Changeset 4363 in vbox
- Timestamp:
- Aug 24, 2007 5:40:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r4344 r4363 1024 1024 { 1025 1025 #ifdef VBOX_VRDP 1026 if (mpEntryPoints )1026 if (mpEntryPoints && mhServer) 1027 1027 { 1028 1028 mpEntryPoints->VRDPEnableConnections (mhServer, true); … … 1034 1034 { 1035 1035 #ifdef VBOX_VRDP 1036 if (mpEntryPoints )1036 if (mpEntryPoints && mhServer) 1037 1037 { 1038 1038 mpEntryPoints->VRDPColorPointer (mhServer, pPointer); … … 1044 1044 { 1045 1045 #ifdef VBOX_VRDP 1046 if (mpEntryPoints )1046 if (mpEntryPoints && mhServer) 1047 1047 { 1048 1048 mpEntryPoints->VRDPHidePointer (mhServer); … … 1076 1076 1077 1077 #ifdef VRDP_NO_COM 1078 if (mpEntryPoints )1078 if (mpEntryPoints && hServer) 1079 1079 { 1080 1080 mpEntryPoints->VRDPDestroy (hServer); … … 1426 1426 /* The guest announces clipboard formats. This must be delivered to all clients. */ 1427 1427 #ifdef VRDP_NO_COM 1428 if (mpEntryPoints )1428 if (mpEntryPoints && pServer->mhServer) 1429 1429 { 1430 1430 mpEntryPoints->VRDPClipboard (pServer->mhServer, … … 1455 1455 */ 1456 1456 #ifdef VRDP_NO_COM 1457 if (mpEntryPoints )1457 if (mpEntryPoints && pServer->mhServer) 1458 1458 { 1459 1459 mpEntryPoints->VRDPClipboard (pServer->mhServer, … … 1480 1480 { 1481 1481 #ifdef VRDP_NO_COM 1482 if (mpEntryPoints )1482 if (mpEntryPoints && pServer->mhServer) 1483 1483 { 1484 1484 mpEntryPoints->VRDPClipboard (pServer->mhServer, … … 1824 1824 #ifdef VBOX_VRDP 1825 1825 #ifdef VRDP_NO_COM 1826 if (mpEntryPoints )1826 if (mpEntryPoints && mhServer) 1827 1827 { 1828 1828 mpEntryPoints->VRDPUpdate (mhServer, uScreenId, pvUpdate, cbUpdate); … … 1839 1839 #ifdef VBOX_VRDP 1840 1840 #ifdef VRDP_NO_COM 1841 if (mpEntryPoints )1841 if (mpEntryPoints && mhServer) 1842 1842 { 1843 1843 mpEntryPoints->VRDPResize (mhServer); … … 1859 1859 update.w = w; 1860 1860 update.h = h; 1861 if (mpEntryPoints )1861 if (mpEntryPoints && mhServer) 1862 1862 { 1863 1863 mpEntryPoints->VRDPUpdate (mhServer, uScreenId, &update, sizeof (update)); … … 1885 1885 #ifdef VBOX_VRDP 1886 1886 #ifdef VRDP_NO_COM 1887 if (mpEntryPoints )1887 if (mpEntryPoints && mhServer) 1888 1888 { 1889 1889 mpEntryPoints->VRDPAudioSamples (mhServer, pvSamples, cSamples, format); … … 1900 1900 #ifdef VBOX_VRDP 1901 1901 #ifdef VRDP_NO_COM 1902 if (mpEntryPoints )1902 if (mpEntryPoints && mhServer) 1903 1903 { 1904 1904 mpEntryPoints->VRDPAudioVolume (mhServer, left, right); … … 1915 1915 #ifdef VBOX_VRDP 1916 1916 #ifdef VRDP_NO_COM 1917 if (mpEntryPoints )1917 if (mpEntryPoints && mhServer) 1918 1918 { 1919 1919 mpEntryPoints->VRDPUSBRequest (mhServer, u32ClientId, pvParms, cbParms); … … 1930 1930 #ifdef VBOX_VRDP 1931 1931 #ifdef VRDP_NO_COM 1932 if (mpEntryPoints )1932 if (mpEntryPoints && mhServer) 1933 1933 { 1934 1934 mpEntryPoints->VRDPQueryInfo (mhServer, index, pvBuffer, cbBuffer, pcbOut);
Note:
See TracChangeset
for help on using the changeset viewer.