Changeset 39552 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Dec 7, 2011 9:36:32 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75303
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibSharedFolders.c
r39551 r39552 46 46 47 47 #define VBOX_INIT_CALL(a, b, c) \ 48 Log (("%s: %s, u32ClientID=%d\n", __func__, "SHFL_FN_" # b, \49 (c)->ulClientID)); \48 LogFunc(("%s, u32ClientID=%d\n", "SHFL_FN_" # b, \ 49 (c)->ulClientID)); \ 50 50 (a)->result = VINF_SUCCESS; \ 51 51 (a)->u32ClientID = (c)->ulClientID; \ … … 98 98 { 99 99 pClient->ulClientID = data.u32ClientID; 100 Log (("%s: u32ClientID=%d\n", __func__, pClient->ulClientID));100 LogFunc(("u32ClientID=%d\n", pClient->ulClientID)); 101 101 } 102 102 return rc; … … 107 107 int rc; 108 108 109 Log (("%s: u32ClientID=%d\n", __func__, pClient->ulClientID));109 LogFunc(("u32ClientID=%d\n", pClient->ulClientID)); 110 110 VBoxGuestHGCMDisconnectInfo data; 111 111 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibSharedFolders.h
r38736 r39552 53 53 #endif 54 54 55 #if defined(RT_OS_WINDOWS) 55 #if defined(RT_OS_WINDOWS) && 0 56 56 /** @todo remove this legacy and use VBox/log.h and/or iprt/log.h. */ 57 /* => Done. The next person who needs logging in Windows guests will have the 58 * honour of making it work. */ 57 59 # ifdef DEBUG 58 60 # define LOG_ENABLED
Note:
See TracChangeset
for help on using the changeset viewer.