Changeset 75773 in vbox for trunk/src/VBox/HostServices/GuestProperties
- 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/GuestProperties/service.cpp
r75737 r75773 334 334 /** 335 335 * @interface_method_impl{VBOXHGCMSVCFNTABLE,pfnConnect} 336 * Stub implementation of pfnConnect. 337 */ 338 static DECLCALLBACK(int) svcConnect(void * /* pvService */, 339 uint32_t /* u32ClientID */, 340 void * /* pvClient */, 341 uint32_t /*fRequestor*/, 342 bool /*fRestoring*/) 343 { 344 return VINF_SUCCESS; 345 } 346 347 /** 348 * @interface_method_impl{VBOXHGCMSVCFNTABLE,pfnConnect} 336 349 * Stub implementation of pfnConnect and pfnDisconnect. 337 350 */ 338 static DECLCALLBACK(int) svc ConnectDisconnect(void * /* pvService */,339 340 351 static DECLCALLBACK(int) svcDisconnect(void * /* pvService */, 352 uint32_t /* u32ClientID */, 353 void * /* pvClient */) 341 354 { 342 355 return VINF_SUCCESS; … … 1708 1721 1709 1722 ptable->pfnUnload = Service::svcUnload; 1710 ptable->pfnConnect = Service::svcConnect Disconnect;1711 ptable->pfnDisconnect = Service::svc ConnectDisconnect;1723 ptable->pfnConnect = Service::svcConnect; 1724 ptable->pfnDisconnect = Service::svcDisconnect; 1712 1725 ptable->pfnCall = Service::svcCall; 1713 1726 ptable->pfnHostCall = Service::svcHostCall;
Note:
See TracChangeset
for help on using the changeset viewer.