Changeset 75773 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
- Timestamp:
- Nov 27, 2018 2:14:41 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126975
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserver/crservice.cpp
r75500 r75773 111 111 } 112 112 113 static DECLCALLBACK(int) svcConnect (void *, uint32_t u32ClientID, void *pvClient )113 static DECLCALLBACK(int) svcConnect (void *, uint32_t u32ClientID, void *pvClient, uint32_t fRequestor, bool fRestoring) 114 114 { 115 int rc = VINF_SUCCESS; 116 117 NOREF(pvClient); 115 RT_NOREF(pvClient, fRequestor, fRestoring); 118 116 119 117 if (g_u32fCrHgcmDisabled) … … 125 123 Log(("SHARED_CROPENGL svcConnect: u32ClientID = %d\n", u32ClientID)); 126 124 127 rc = crVBoxServerAddClient(u32ClientID);125 int rc = crVBoxServerAddClient(u32ClientID); 128 126 129 127 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.