Changeset 156 for trunk/src/helpers
- Timestamp:
- Apr 18, 2002, 9:53:28 PM (23 years ago)
- Location:
- trunk/src/helpers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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.