- Timestamp:
- Oct 8, 2010 10:49:06 AM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r33004 r33005 551 551 RTLDRMOD ConsoleVRDPServer::mVRDPLibrary; 552 552 553 PFNVRDECREATESERVER ConsoleVRDPServer::mpfnVRD PCreateServer = NULL;553 PFNVRDECREATESERVER ConsoleVRDPServer::mpfnVRDECreateServer = NULL; 554 554 555 555 VRDEENTRYPOINTS_1 *ConsoleVRDPServer::mpEntryPoints = NULL; … … 1267 1267 if (loadVRDPLibrary()) 1268 1268 { 1269 rc = mpfnVRD PCreateServer(&mCallbacks.header, this, (VRDEINTERFACEHDR **)&mpEntryPoints, &mhServer);1269 rc = mpfnVRDECreateServer(&mCallbacks.header, this, (VRDEINTERFACEHDR **)&mpEntryPoints, &mhServer); 1270 1270 1271 1271 if (RT_SUCCESS(rc)) … … 2154 2154 static const struct SymbolEntry symbols[] = 2155 2155 { 2156 DEFSYMENTRY(VRD PCreateServer)2156 DEFSYMENTRY(VRDECreateServer) 2157 2157 }; 2158 2158 -
trunk/src/VBox/Main/include/ConsoleVRDPServer.h
r33004 r33005 154 154 static RTLDRMOD mVRDPLibrary; 155 155 156 static PFNVRDECREATESERVER mpfnVRD PCreateServer;156 static PFNVRDECREATESERVER mpfnVRDECreateServer; 157 157 158 158 static VRDEENTRYPOINTS_1 *mpEntryPoints;
Note:
See TracChangeset
for help on using the changeset viewer.