Changeset 102251 in vbox
- Timestamp:
- Nov 22, 2023 11:39:01 AM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160376
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r102250 r102251 390 390 nsprpub/pr/src/io/prprf.c \ 391 391 nsprpub/pr/src/misc/prinrval.c \ 392 nsprpub/pr/src/misc/prlong.c \393 392 nsprpub/lib/ds/plarena.c \ 394 393 nsprpub/lib/ds/plhash.c \ -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/prlong.h
r102246 r102251 49 49 #include "prtypes.h" 50 50 51 #include <iprt/types.h> 52 51 53 #ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 52 54 #define LL_MaxInt VBoxNsllLL_MaxInt … … 67 69 ** initializer 68 70 ***********************************************************************/ 69 NSPR_API(PRInt64) LL_MaxInt(void); 70 NSPR_API(PRInt64) LL_MinInt(void); 71 NSPR_API(PRInt64) LL_Zero(void); 72 NSPR_API(PRUint64) LL_MaxUint(void); 71 DECL_FORCE_INLINE(PRInt64) LL_MaxInt(void) 72 { 73 return INT64_MAX; 74 } 75 76 DECL_FORCE_INLINE(PRInt64) LL_MinInt(void) 77 { 78 return INT64_MIN; 79 } 80 81 DECL_FORCE_INLINE(PRInt64) LL_Zero(void) 82 { 83 return 0; 84 } 85 86 DECL_FORCE_INLINE(PRUint64) LL_MaxUint(void) 87 { 88 return UINT64_MAX; 89 } 73 90 74 91 #define LL_MAXINT LL_MaxInt()
Note:
See TracChangeset
for help on using the changeset viewer.