Changeset 7801 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Apr 8, 2008 1:12:40 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29367
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/service.cpp
r5999 r7801 29 29 30 30 31 static DECLCALLBACK(int) svcUnload (void )31 static DECLCALLBACK(int) svcUnload (void *) 32 32 { 33 33 int rc = VINF_SUCCESS; … … 39 39 } 40 40 41 static DECLCALLBACK(int) svcConnect ( uint32_t u32ClientID, void *pvClient)41 static DECLCALLBACK(int) svcConnect (void *, uint32_t u32ClientID, void *pvClient) 42 42 { 43 43 int rc = VINF_SUCCESS; … … 52 52 } 53 53 54 static DECLCALLBACK(int) svcDisconnect ( uint32_t u32ClientID, void *pvClient)54 static DECLCALLBACK(int) svcDisconnect (void *, uint32_t u32ClientID, void *pvClient) 55 55 { 56 56 int rc = VINF_SUCCESS; … … 67 67 * We can't save the OpenGL state, so there's not much to do. Perhaps we should invalidate the client id? 68 68 */ 69 static DECLCALLBACK(int) svcSaveState( uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM)69 static DECLCALLBACK(int) svcSaveState(void *, uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM) 70 70 { 71 71 VBOXOGLCTX *pClient = (VBOXOGLCTX *)pvClient; … … 79 79 } 80 80 81 static DECLCALLBACK(int) svcLoadState( uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM)81 static DECLCALLBACK(int) svcLoadState(void *, uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM) 82 82 { 83 83 VBOXOGLCTX *pClient = (VBOXOGLCTX *)pvClient; … … 91 91 } 92 92 93 static DECLCALLBACK(void) svcCall ( VBOXHGCMCALLHANDLE callHandle, uint32_t u32ClientID, void *pvClient, uint32_t u32Function, uint32_t cParms, VBOXHGCMSVCPARM paParms[])93 static DECLCALLBACK(void) svcCall (void *, VBOXHGCMCALLHANDLE callHandle, uint32_t u32ClientID, void *pvClient, uint32_t u32Function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 94 94 { 95 95 int rc = VINF_SUCCESS; … … 316 316 * We differentiate between a function handler for the guest and one for the host. The guest is not allowed to add or remove mappings for obvious security reasons. 317 317 */ 318 static DECLCALLBACK(int) svcHostCall ( uint32_t u32Function, uint32_t cParms, VBOXHGCMSVCPARM paParms[])318 static DECLCALLBACK(int) svcHostCall (void *, uint32_t u32Function, uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 319 319 { 320 320 int rc = VINF_SUCCESS; … … 375 375 ptable->pfnSaveState = svcSaveState; 376 376 ptable->pfnLoadState = svcLoadState; 377 ptable->pvService = NULL; 377 378 378 379 vboxglGlobalInit();
Note:
See TracChangeset
for help on using the changeset viewer.