Changeset 85124 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jul 8, 2020 9:13:30 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139064
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/pkix-signature-builtin.h ¶
r82968 r85124 33 33 #include <iprt/crypto/pkix.h> 34 34 35 extern DECL HIDDEN(RTCRPKIXSIGNATUREDESC const) g_rtCrPkixSigningHashWithRsaDesc;35 extern DECL_HIDDEN_DATA(RTCRPKIXSIGNATUREDESC const) g_rtCrPkixSigningHashWithRsaDesc; 36 36 37 37 #endif /* !IPRT_INCLUDED_SRC_common_crypto_pkix_signature_builtin_h */ -
trunk/src/VBox/Runtime/common/dbg/dbgmod.cpp ¶
r83085 r85124 120 120 /** String cache for the debug info interpreters. 121 121 * RTSTRCACHE is thread safe. */ 122 DECL HIDDEN(RTSTRCACHE) g_hDbgModStrCache = NIL_RTSTRCACHE;122 DECL_HIDDEN_DATA(RTSTRCACHE) g_hDbgModStrCache = NIL_RTSTRCACHE; 123 123 124 124 -
trunk/src/VBox/Runtime/common/dvm/dvm.cpp ¶
r82968 r85124 94 94 * Global variables * 95 95 *********************************************************************************************************************************/ 96 extern RTDVMFMTOPSg_rtDvmFmtMbr;97 extern RTDVMFMTOPSg_rtDvmFmtGpt;98 extern RTDVMFMTOPSg_rtDvmFmtBsdLbl;96 extern DECL_HIDDEN_DATA(const RTDVMFMTOPS) g_rtDvmFmtMbr; 97 extern DECL_HIDDEN_DATA(const RTDVMFMTOPS) g_rtDvmFmtGpt; 98 extern DECL_HIDDEN_DATA(const RTDVMFMTOPS) g_rtDvmFmtBsdLbl; 99 99 100 100 /** -
trunk/src/VBox/Runtime/common/dvm/dvmbsdlabel.cpp ¶
r82968 r85124 525 525 } 526 526 527 DECL HIDDEN(RTDVMFMTOPS) g_rtDvmFmtBsdLbl =527 DECL_HIDDEN_CONST(const RTDVMFMTOPS) g_rtDvmFmtBsdLbl = 528 528 { 529 529 /* pcszFmt */ -
trunk/src/VBox/Runtime/common/dvm/dvmgpt.cpp ¶
r82968 r85124 537 537 } 538 538 539 RTDVMFMTOPSg_rtDvmFmtGpt =539 DECL_HIDDEN_CONST(const RTDVMFMTOPS) g_rtDvmFmtGpt = 540 540 { 541 541 /* pszFmt */ -
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp ¶
r82968 r85124 686 686 } 687 687 688 RTDVMFMTOPSg_rtDvmFmtMbr =688 DECL_HIDDEN_CONST(const RTDVMFMTOPS) g_rtDvmFmtMbr = 689 689 { 690 690 /* pszFmt */ -
trunk/src/VBox/Runtime/common/misc/thread.cpp ¶
r83125 r85124 87 87 static uint32_t volatile g_cThreadInTree; 88 88 /** Counters for each thread type. */ 89 DECL HIDDEN(uint32_t volatile)g_acRTThreadTypeStats[RTTHREADTYPE_END];89 DECL_HIDDEN_DATA(uint32_t volatile) g_acRTThreadTypeStats[RTTHREADTYPE_END]; 90 90 91 91 -
trunk/src/VBox/Runtime/common/string/base64.h ¶
r84297 r85124 50 50 * Global Variables * 51 51 *********************************************************************************************************************************/ 52 extern DECL HIDDEN(const uint8_t)g_au8rtBase64CharToVal[256];53 extern DECL HIDDEN(const char)g_szrtBase64ValToChar[64+1];54 extern DECL HIDDEN(const size_t)g_acchrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1];55 extern DECL HIDDEN(const char)g_aachrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1][2];52 extern DECL_HIDDEN_DATA(const uint8_t) g_au8rtBase64CharToVal[256]; 53 extern DECL_HIDDEN_DATA(const char) g_szrtBase64ValToChar[64+1]; 54 extern DECL_HIDDEN_DATA(const size_t) g_acchrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1]; 55 extern DECL_HIDDEN_DATA(const char) g_aachrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1][2]; 56 56 57 57
Note:
See TracChangeset
for help on using the changeset viewer.