Changeset 75853 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Nov 30, 2018 7:26:42 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127057
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/service.cpp
r75773 r75853 857 857 } CLIPSAVEDSTATEDATA; 858 858 859 static DECLCALLBACK(int) svcLoadState(void *, uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM )859 static DECLCALLBACK(int) svcLoadState(void *, uint32_t u32ClientID, void *pvClient, PSSMHANDLE pSSM, uint32_t uVersion) 860 860 { 861 861 #ifndef UNIT_TEST 862 RT_NOREF(uVersion); 862 863 LogRel2 (("svcLoadState: u32ClientID = %d\n", u32ClientID)); 863 864 … … 931 932 932 933 #else /* UNIT_TEST*/ 933 RT_NOREF 3(u32ClientID, pvClient, pSSM);934 RT_NOREF(u32ClientID, pvClient, pSSM, uVersion); 934 935 #endif /* UNIT_TEST */ 935 936 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.