Changeset 45016 in vbox
- Timestamp:
- Mar 13, 2013 12:43:29 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibSharedFolders.c
r45015 r45016 28 28 #ifndef VBGL_VBOXGUEST 29 29 30 /******************************************************************************* 31 * Header Files * 32 *******************************************************************************/ 30 33 #define LOG_GROUP LOG_GROUP_SHARED_FOLDERS 31 32 34 #ifdef RT_OS_LINUX 33 35 # include "VBoxGuestR0LibSharedFolders.h" 34 # define DbgPrint RTAssertMsg2Weak35 36 #else 36 37 # include "VBoxGuestR0LibSharedFolders.h" … … 42 43 #include <iprt/string.h> 43 44 45 46 /******************************************************************************* 47 * Defined Constants And Macros * 48 *******************************************************************************/ 44 49 #define SHFL_CPARMS_SET_UTF8 0 45 50 #define SHFL_CPARMS_SET_SYMLINKS 0 … … 54 59 55 60 61 56 62 DECLVBGL(int) vboxInit (void) 57 63 { … … 72 78 VBoxGuestHGCMConnectInfo data; 73 79 80 pClient->handle = NULL; 81 74 82 RT_ZERO(data); 75 76 pClient->handle = NULL;77 78 83 data.result = VINF_SUCCESS; 79 84 data.Loc.type = VMMDevHGCMLoc_LocalHost_Existing; … … 108 113 109 114 RT_ZERO(data); 110 111 115 data.result = VINF_SUCCESS; 112 116 data.u32ClientID = pClient->ulClientID; … … 121 125 122 126 DECLVBGL(int) vboxCallQueryMappings (PVBSFCLIENT pClient, SHFLMAPPING paMappings[], 123 uint32_t *pcMappings)127 uint32_t *pcMappings) 124 128 { 125 129 int rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.