Changeset 62814 in vbox for trunk/src/VBox/GuestHost/OpenGL/util/error.c
- Timestamp:
- Aug 1, 2016 12:51:52 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r62812 r62814 43 43 * See also VBoxDeps.cpp in iprt and xpcom. 44 44 */ 45 #ifdef _MSC_VER 46 # pragma warning(push) 47 # pragma warning(disable:4232) /* nonstandard extension used: 'g_VBoxRTDeps' : address of dllimport 'RTBldCfgRevision' is not static, identiy not guaranteed */ 48 #endif 45 49 PFNRT g_VBoxRTDeps[] = 46 50 { … … 51 55 (PFNRT)RTBldCfgRevision, 52 56 }; 57 #ifdef _MSC_VER 58 # pragma warning(pop) 59 #endif 53 60 54 61 … … 171 178 BOOL WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved) 172 179 { 173 (void) lpvReserved; 180 (void) lpvReserved; (void) hDLLInst; 174 181 175 182 switch (fdwReason)
Note:
See TracChangeset
for help on using the changeset viewer.