Changeset 45164 in vbox for trunk/src/VBox/RDP/client/rdp.c
- Timestamp:
- Mar 25, 2013 11:44:09 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/RDP/client/rdp.c
r40651 r45164 828 828 } 829 829 830 #ifndef VBOX 830 831 /* Output new pointer capability set */ 831 832 static void … … 839 840 out_uint16_le(s, 20); /* Cache size for new pointers */ 840 841 } 842 #endif 841 843 842 844 /* Output share capability set */ … … 926 928 { 927 929 caplen += RDP_CAPLEN_BMPCACHE2; 930 #ifdef VBOX 931 caplen += RDP_CAPLEN_POINTER; 932 #else 928 933 caplen += RDP_CAPLEN_NEWPOINTER; 934 #endif 929 935 } 930 936 else … … 955 961 { 956 962 rdp_out_bmpcache2_caps(s); 963 #ifdef VBOX 964 rdp_out_pointer_caps(s); 965 #else 957 966 rdp_out_newpointer_caps(s); 967 #endif 958 968 } 959 969 else
Note:
See TracChangeset
for help on using the changeset viewer.