Changeset 697
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/avv.c
r689 r697 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2004, 200 6Steven H.Levine9 Copyright (c) 2004, 2007 Steven H.Levine 10 10 11 11 31 Jul 04 SHL ArcReviewDlgProc: correct nameis... decodes … … 21 21 30 Jul 06 SHL Avoid warnings when editing new definition 22 22 22 Mar 07 GKY Use QWL_USER 23 16 Jun 07 SHL Update for OpenWatcom 23 24 24 25 ***********************************************************************/ … … 355 356 *error = 1; 356 357 else { 357 ret = (INT) DosQ AppType(p, &apptype);358 ret = (INT) DosQueryAppType(p, &apptype); 358 359 if (ret) 359 360 *error = -1; -
trunk/dll/cmdline.c
r689 r697 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2004, 200 6Steven H.Levine9 Copyright (c) 2004, 2007 Steven H.Levine 10 10 11 11 01 Aug 04 SHL Rework lstrip/rstrip usage … … 14 14 29 Jul 06 SHL Use xfgets_bstripcr 15 15 22 Mar 07 GKY Use QWL_USER 16 16 Jun 07 SHL Update for OpenWatcom 16 17 17 18 ***********************************************************************/ … … 393 394 } 394 395 } 395 if (DosQ AppType(executable, &apptype) ||396 if (DosQueryAppType(executable, &apptype) || 396 397 (apptype && !(apptype & 397 398 (FAPPTYP_NOTWINDOWCOMPAT | -
trunk/dll/fm3dll.h
r696 r697 106 106 #define BKS_MERLINSTYLE 0x0800 107 107 #endif 108 #if !defined(PMBITMAP_INCLUDED) && !defined(INCL_GPIINCLUDED) 108 109 // PMBITMAP_INCLUDED - IBM Toolkit 110 // INCL_GPIBITMAPS - OpenWatcom Toolkit 111 #if !defined(PMBITMAP_INCLUDED) && !defined(INCL_GPIBITMAPS) 109 112 typedef struct _RGB2 /* rgb2 */ 110 113 { -
trunk/dll/shadow.c
r551 r697 7 7 8 8 Copyright (c) 1993-97 M. Kimes 9 Copyright (c) 2006 Steven H. Levine9 Copyright (c) 2006, 2007 Steven H. Levine 10 10 11 11 22 Jul 06 SHL Check more run time errors 12 16 Jun 07 SHL Update for OpenWatcom 12 13 13 14 ***********************************************************************/ … … 204 205 CHAR *p, *pp, szDir[CCHMAXPATH + 1], szBuffer[CCHMAXPATH + 1]; 205 206 206 if (DosQ AppType(list[x], &apt))207 if (DosQueryAppType(list[x], &apt)) 207 208 apt = 0; 208 209 p = strrchr(list[x], '.'); -
trunk/dll/valid.c
r689 r697 7 7 8 8 Copyright (c) 1993, 1998 M. Kimes 9 Copyright (c) 2002, 200 6Steven H.Levine9 Copyright (c) 2002, 2007 Steven H.Levine 10 10 11 11 23 Nov 02 SHL RootName: rework for sanity … … 22 22 07 Jan 07 GKY Move error strings etc. to string file 23 23 18 Feb 07 GKY Add more drive types and icons 24 16 Jun 07 SHL Update for OpenWatcom 24 25 25 26 ***********************************************************************/ … … 515 516 p = strrchr(filename, '.'); 516 517 if (p) 517 ret = DosQ AppType(filename, &apptype);518 ret = DosQueryAppType(filename, &apptype); 518 519 else { 519 520 … … 522 523 strcpy(fname, filename); 523 524 strcat(fname, "."); 524 ret = DosQ AppType(fname, &apptype);525 ret = DosQueryAppType(fname, &apptype); 525 526 } 526 527 if ((!ret && (!apptype || -
trunk/dll/worker.c
r689 r697 19 19 03 Nov 06 SHL Count thread usage 20 20 21 Apr 07 GKY Find FM2Utils by path or utils directory 21 16 Jun 07 SHL Update for OpenWatcom 21 22 22 23 ***********************************************************************/ … … 25 26 #define INCL_WIN 26 27 #define INCL_DOSERRORS 28 #define INCL_WPCLASS // WinQueryObjectPath 27 29 #include <os2.h> 28 30 … … 48 50 #pragma alloc_text(ACTION,Action) 49 51 #pragma alloc_text(UNDO,FreeUndo,Undo) 50 51 BOOL APIENTRY WinQueryObjectPath(HOBJECT hobject,52 PSZ pszPathName, ULONG ulSize);53 52 54 53 #ifdef UNDO
Note:
See TracChangeset
for help on using the changeset viewer.
