Changeset 907 for trunk/dll/newview.c
- Timestamp:
- Jan 6, 2008, 8:26:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/newview.c
r906 r907 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 200 7Steven H. Levine9 Copyright (c) 2001, 2008 Steven H. Levine 10 10 11 11 01 Dec 03 SHL Comments … … 32 32 ***********************************************************************/ 33 33 34 #include <stdlib.h> 35 #include <string.h> 36 #include <process.h> 37 #include <limits.h> 38 #include <share.h> 39 34 40 #define INCL_DOS 35 41 #define INCL_WIN 36 42 #define INCL_GPI 37 43 #define INCL_LONGLONG 38 #include <os2.h> 39 40 #include <stdlib.h> 41 #include <stdio.h> 42 #include <string.h> 43 #include <ctype.h> 44 #include <process.h> 45 #include <limits.h> 46 #include <share.h> 47 48 #include "fm3dll.h" 44 49 45 #include "fm3dlg.h" 50 46 #include "fm3str.h" 51 47 #include "mle.h" 48 #include "makelist.h" // AddToList 49 #include "errutil.h" // Dos_Error... 50 #include "strutil.h" // GetPString 51 #include "fm3dll.h" 52 52 53 53 #pragma data_seg(DATA2) … … 357 357 CHAR **list = NULL, s[SEARCHSTRINGLEN], a; 358 358 register CHAR *p, *e; 359 INT numlines = 0, numalloc = 0;359 UINT numlines = 0, numalloc = 0; 360 360 361 361 if (ad && ad->selected) { … … 396 396 while (*e != '\r' && *e != '\n' && e < ad->text + ad->textsize) 397 397 e++; 398 /* 399 if((*e == '\r' || *e == '\n') && e > p)400 e--;401 */398 /* fixme to be gone? 399 if((*e == '\r' || *e == '\n') && e > p) 400 e--; 401 */ 402 402 width = e - p; 403 403 } … … 434 434 CHAR **list = NULL, s[SEARCHSTRINGLEN]; 435 435 SHORT x, z; 436 INT numlines = 0, numalloc = 0;436 UINT numlines = 0, numalloc = 0; 437 437 438 438 if (ad) {
Note:
See TracChangeset
for help on using the changeset viewer.