Changeset 156
- Timestamp:
- Apr 18, 2002, 9:53:28 PM (23 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/encodings/base.h
r147 r156 113 113 } ENCBYTECOUNT; 114 114 115 int encGetTable(ENCID id, 116 PXWPENCODINGMAP *ppMap, 117 unsigned long *pcEntries); 118 115 119 ENCID encFindIdForCodepage(unsigned short usCodepage, 116 117 120 const char **ppcszDescription, 121 ENCBYTECOUNT *pByteCount); 118 122 119 123 PCONVERSION encCreateCodec(ENCID id); -
trunk/include/helpers/dialog.h
r155 r156 312 312 id, CTL_COMMON_FONT, 0, {cx, cy}, COMMON_SPACING } 313 313 314 // the following require INCL_WINSTDSLIDER 315 316 #define CONTROLDEF_SLIDER(id, cx, cy, pctldata) { WC_SLIDER, NULL, \ 317 WS_VISIBLE | WS_TABSTOP | WS_GROUP | SLS_HORIZONTAL | SLS_PRIMARYSCALE1 \ 318 | SLS_BUTTONSRIGHT | SLS_SNAPTOINCREMENT, \ 319 id, CTL_COMMON_FONT, 0, {cx, cy}, COMMON_SPACING, pctldata } 320 314 321 /* ****************************************************************** 315 322 * -
trunk/include/helpers/winh.h
r155 r156 837 837 typedef PSWBLOCK XWPENTRY WINHQUERYSWITCHLIST(HAB hab); 838 838 typedef WINHQUERYSWITCHLIST *PWINHQUERYSWITCHLIST; 839 840 HSWITCH XWPENTRY winhHSWITCHfromHAPP(HAPP happ); 839 841 #endif 840 842 -
trunk/src/helpers/dialog.c
r155 r156 475 475 *@@changed V0.9.16 (2001-10-15) [umoeller]: added APIRET 476 476 *@@changed V0.9.16 (2002-02-02) [umoeller]: added support for explicit group size 477 *@@changed V0.9.19 (2002-04-17) [umoeller]: fixes for the STUPID drop-down comboboxes 477 478 */ 478 479 … … 714 715 *@@changed V0.9.16 (2001-10-15) [umoeller]: fixed ugly group table spacings 715 716 *@@changed V0.9.16 (2001-12-08) [umoeller]: fixed entry field ES_MARGIN positioning 717 *@@changed V0.9.19 (2002-04-17) [umoeller]: fixes for the STUPID drop-down comboboxes 716 718 */ 717 719 -
trunk/src/helpers/encodings.c
r155 r156 126 126 127 127 /* 128 *@@ FindEntry:128 *@@ encGetTable: 129 129 * 130 130 *@@added V0.9.18 (2002-03-08) [umoeller] 131 131 */ 132 132 133 static int FindEntry(ENCID id,134 135 133 int encGetTable(ENCID id, 134 PXWPENCODINGMAP *ppMap, 135 unsigned long *pcEntries) 136 136 { 137 137 unsigned long ul; … … 161 161 ENCID encFindIdForCodepage(unsigned short usCodepage, // in: codepage to find 162 162 const char **ppcszDescription, // out: codepage description; ptr can be NULL 163 ENCBYTECOUNT *pByteCount) // out: SINGLE or DOUBLE 163 ENCBYTECOUNT *pByteCount) // out: SINGLE or DOUBLE; ptr can be NULL 164 164 { 165 165 unsigned long ul; … … 246 246 unsigned long cArrayEntries; 247 247 248 if ( FindEntry(id,249 &pEncodingMap,250 &cArrayEntries))248 if (encGetTable(id, 249 &pEncodingMap, 250 &cArrayEntries)) 251 251 { 252 252 unsigned short usHighestCP = 0, -
trunk/src/helpers/winh.c
r155 r156 4252 4252 } 4253 4253 4254 typedef HSWITCH APIENTRY WINHSWITCHFROMHAPP(HAPP happ); 4255 4256 /* 4257 *@@ winhHSWITCHfromHAPP: 4258 * resolves and calls the undocumented 4259 * WinHSWITCHfromHAPP API. 4260 * 4261 *@@added V0.9.19 (2002-04-17) [umoeller] 4262 */ 4263 4264 HSWITCH winhHSWITCHfromHAPP(HAPP happ) 4265 { 4266 static WINHSWITCHFROMHAPP *pWinHSWITCHfromHAPP = NULL; 4267 4268 if (!pWinHSWITCHfromHAPP) 4269 // first call: import WinHSWITCHfromHAPP 4270 // WinHSWITCHfromHAPP PMMERGE.5199 4271 doshQueryProcAddr("PMMERGE", 4272 5199, 4273 (PFN*)&pWinHSWITCHfromHAPP); 4274 4275 if (pWinHSWITCHfromHAPP) 4276 return pWinHSWITCHfromHAPP(happ); 4277 4278 return NULLHANDLE; 4279 } 4280 4254 4281 /* 4255 4282 *@@ winhQueryTasklistWindow:
Note:
See TracChangeset
for help on using the changeset viewer.