Changeset 13206 in vbox for trunk/src/VBox/HostServices/GuestProperties
- Timestamp:
- Oct 13, 2008 10:54:04 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r13179 r13206 793 793 rc = RTReqCallEx(mReqQueue, NULL, 0, RTREQFLAGS_NO_WAIT, 794 794 (PFNRT)Service::reqNotify, 7, mpfnHostCallback, 795 mpvHostData, pszName, pszValue, u64Timestamp / 0xffff, 796 u64Timestamp % 0xffff, pszFlags); 795 mpvHostData, pszName, pszValue, 796 (uint32_t) u64Timestamp / 0xffffffff, 797 (uint32_t) u64Timestamp % 0xffffffff, pszFlags); 797 798 if (!RT_SUCCESS(rc)) /* clean up */ 798 799 {
Note:
See TracChangeset
for help on using the changeset viewer.