Changeset 76254 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-glLdr.cpp
- Timestamp:
- Dec 16, 2018 3:05:45 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-glLdr.cpp
r76253 r76254 27 27 #ifdef RT_OS_WINDOWS 28 28 # define OGLGETPROCADDRESS MyWinGetProcAddress 29 DECLINLINE(P ROC) MyWinGetProcAddress(const char *pszSymbol)29 DECLINLINE(PFNRT) MyWinGetProcAddress(const char *pszSymbol) 30 30 { 31 31 int rc; … … 54 54 { 55 55 /* Khronos: [on failure] "some implementations will return other values. 1, 2, and 3 are used, as well as -1". */ 56 P ROC p =s_wglGetProcAddress(pszSymbol);56 PFNRT p = (PFNRT)s_wglGetProcAddress(pszSymbol); 57 57 if (RT_VALID_PTR(p)) 58 58 return p;
Note:
See TracChangeset
for help on using the changeset viewer.