Changeset 9505 for trunk/src/win32k
- Timestamp:
- Dec 16, 2002, 1:51:33 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/src/MkCallTab.c
r9502 r9505 1 /* $Id: MkCallTab.c,v 1. 6 2002-12-16 00:46:47bird Exp $1 /* $Id: MkCallTab.c,v 1.7 2002-12-16 00:51:33 bird Exp $ 2 2 * 3 3 * Generates the calltab.asm from aImportTab. … … 62 62 #include <string.h> 63 63 #include <stdio.h> 64 #include <stdlib.h> 64 65 65 66 … … 368 369 void syntax(void) 369 370 { 370 printf("Incorrect parameter!\n" 371 "Syntax: mkcalltab.exe <tab>\n" 372 " Where <tab> is either calltab or tstfakers.\n" 371 fprintf(stderr, 372 "Incorrect parameter!\n" 373 "Syntax: mkcalltab.exe <tab>\n" 374 " Where <tab> is either calltab or tstfakers.\n" 373 375 ); 374 376 } … … 394 396 * Write Start of file. 395 397 */ 396 printf("; $Id: MkCallTab.c,v 1. 6 2002-12-16 00:46:47bird Exp $\n"398 printf("; $Id: MkCallTab.c,v 1.7 2002-12-16 00:51:33 bird Exp $\n" 397 399 ";\n" 398 400 "; Autogenerated calltab file.\n" … … 1110 1112 else if (aEntries[i].iOrdinal == iOrdRet) 1111 1113 { 1112 printf("Fatal Error: Duplicate ordinal detected (ord=%d)\n", iOrdRet);1113 DosExit(EXIT_PROCESS,iOrdRet);1114 fprintf(stderr, "Fatal Error: Duplicate ordinal detected (ord=%d)\n", iOrdRet); 1115 exit(iOrdRet); 1114 1116 } 1115 1117 } … … 1185 1187 char szNameExp[64]; 1186 1188 1187 printf("; $Id: MkCallTab.c,v 1. 6 2002-12-16 00:46:47bird Exp $\n"1189 printf("; $Id: MkCallTab.c,v 1.7 2002-12-16 00:51:33 bird Exp $\n" 1188 1190 ";\n" 1189 1191 "; Autogenerated import definition file.\n" … … 1235 1237 * Write Start of file. 1236 1238 */ 1237 printf("/* $Id: MkCallTab.c,v 1. 6 2002-12-16 00:46:47bird Exp $\n"1239 printf("/* $Id: MkCallTab.c,v 1.7 2002-12-16 00:51:33 bird Exp $\n" 1238 1240 " *\n" 1239 1241 " * Autogenerated TstFakers file.\n"
Note:
See TracChangeset
for help on using the changeset viewer.