- Timestamp:
- Feb 1, 2000, 9:08:54 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev16/probkrnl.c
r2501 r2589 1 /* $Id: probkrnl.c,v 1. 6 2000-01-22 18:20:56bird Exp $1 /* $Id: probkrnl.c,v 1.7 2000-02-01 08:08:54 bird Exp $ 2 2 * 3 3 * Description: Autoprobes the os2krnl file and os2krnl[*].sym files. … … 49 49 #define DWORD unsigned long int 50 50 51 /* "@#IBM:14.020#@ os2krnl... "*/ 51 /* "@#IBM:14.039#@ os2krnl... "*/ 52 /* "@#IBM:8.264#@ os2krnl... "*/ 52 53 #define KERNEL_ID_STRING_LENGTH 42 53 54 #define KERNEL_READ_SIZE 512 … … 66 67 #include <reqpkt.h> 67 68 68 #include "os2krnl.h" /* must be included before dev1632.h! */69 #include "os2krnl.h" /* must be included before dev1632.h! */ 69 70 #include "sym.h" 70 71 #include "probkrnl.h" … … 140 141 /* messages */ 141 142 static char szBanner[] = "Win32k - Odin32 support driver."; 142 static char szMsg1[] = "\n\r \tFound kernel:";143 static char szMsg1a[] = "\n\r \tBuild:";144 static char szMsg2[] = "\n\r \tFound symbolfile: ";145 static char szMsg4[] = "\n\r \tFailed to find symbolfile!\n\r";146 static char szMsgfailed[]= "failed! ";143 static char szMsg1[] = "\n\r Found kernel: "; 144 static char szMsg1a[] = "\n\r Build: "; 145 static char szMsg2[] = "\n\r Found symbolfile: "; 146 static char szMsg4[] = "\n\r Failed to find symbolfile!\n\r"; 147 static char szMsgfailed[]= "failed! "; 147 148 148 149 … … 909 910 for (i = 0; i < NUMBER_OF_PROCS; i++) 910 911 { 911 puts("\n\r\t"); 912 if ((i % 2) == 0) 913 puts("\n\r "); 914 else 915 puts(" "); 912 916 puts(aProcTab[i].achName); 913 for (j = aProcTab[i].cchName; j < 17; j++)917 for (j = aProcTab[i].cchName; j < 20; j++) 914 918 puts(" "); 915 919
Note:
See TracChangeset
for help on using the changeset viewer.