- Timestamp:
- Dec 11, 2000, 7:34:45 AM (25 years ago)
- Location:
- trunk/src/win32k
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev16/probkrnl.c
r4714 r4781 1 /* $Id: probkrnl.c,v 1. 29 2000-12-02 23:28:51bird Exp $1 /* $Id: probkrnl.c,v 1.30 2000-12-11 06:34:44 bird Exp $ 2 2 * 3 3 * Description: Autoprobes the os2krnl file and os2krnl[*].sym files. … … 104 104 {FALSE, -1, 12, "_LDRQAppType", "@8", -1, -1, -1, -1, EPT_PROC32}, 105 105 {FALSE, -1, 20, "_ldrEnum32bitRelRecs", "@24", -1, -1, -1, -1, EPT_PROC32}, 106 {FALSE, -1, 14, "_ldrFindModule", "@16", -1, -1, -1, -1, EPT_PROC32}, 107 {FALSE, -1, 21, "_ldrCheckInternalName","@4", -1, -1, -1, -1, EPT_PROC32}, 106 108 {FALSE, -1, 11, "g_tkExecPgm", "", -1, -1, -1, -1, EPT_PROC32}, 107 109 {FALSE, -1, 15, "_tkStartProcess", "", -1, -1, -1, -1, EPT_PROC32}, 108 110 {FALSE, -1, 12, "_LDRClearSem", "@0", -1, -1, -1, -1, EPT_PROCIMPORT32}, 109 111 {FALSE, -1, 21, "_ldrASMpMTEFromHandle","@4", -1, -1, -1, -1, EPT_PROCIMPORT32}, 110 {FALSE, -1, 14, "_ldrFindModule", "@16", -1, -1, -1, -1, EPT_PROCIMPORT32},111 112 {FALSE, -1, 21, "_ldrValidateMteHandle","@4", -1, -1, -1, -1, EPT_PROCIMPORT32}, 113 {FALSE, -1, 13, "_ldrTransPath", "@4", -1, -1, -1, -1, EPT_PROCIMPORT32}, 114 {FALSE, -1, 15, "_ldrGetFileName", "@12", -1, -1, -1, -1, EPT_PROCIMPORT32}, 115 {FALSE, -1, 15, "_ldrUCaseString", "@8", -1, -1, -1, -1, EPT_PROCIMPORT32}, 112 116 {FALSE, -1, 11, "_VMAllocMem", "@36", -1, -1, -1, -1, EPT_PROCIMPORT32}, 113 117 {FALSE, -1, 10, "_VMFreeMem", "@12", -1, -1, -1, -1, EPT_PROCIMPORT32}, … … 137 141 {FALSE, -1, 11, "ptda_module", "", -1, -1, -1, -1, EPT_VARIMPORT16}, 138 142 {FALSE, -1, 18, "ptda_pBeginLIBPATH", "", -1, -1, -1, -1, EPT_VARIMPORT16}, 143 {FALSE, -1, 11, "_LDRLibPath", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 144 {FALSE, -1, 6, "_mte_h", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 145 {FALSE, -1, 9, "_global_h", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 146 {FALSE, -1, 9, "_global_l", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 147 {FALSE, -1, 11, "_specific_h", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 148 {FALSE, -1, 11, "_specific_l", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 149 {FALSE, -1, 10, "_program_h", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 150 {FALSE, -1, 10, "_program_l", "", -1, -1, -1, -1, EPT_VARIMPORT32}, 139 151 {FALSE, -1, 14, "SecPathFromSFN", "", -1, -1, -1, -1, EPT_PROCIMPORTNR32}, 140 152 #if 0 /* not used */ … … 145 157 {FALSE, -1, 12, "_IOSftReadAt", "@20", -1, -1, -1, -1, EPT_PROCIMPORT32}, 146 158 {FALSE, -1, 13, "_IOSftWriteAt", "@20", -1, -1, -1, -1, EPT_PROCIMPORT32}, 147 {FALSE, -1, 11, "_LDRLibPath", "", -1, -1, -1, -1, EPT_VARIMPORT32},148 159 #endif 149 160 #if 0/* experimenting...*/ … … 403 414 * @param psz1 String to be search. 404 415 * @param psz2 Substring to search for. 405 * @author knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)416 * @author knut st. osmundsen (knut.stange.osmundsen@mynd.no) 406 417 */ 407 418 char *kstrstr(const char *psz1, const char *psz2) … … 513 524 * @param pszTarget Target string. 514 525 * @param pszSource Source string. 515 * @author knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)526 * @author knut st. osmundsen (knut.stange.osmundsen@mynd.no) 516 527 */ 517 528 char * kstrcpy(char * pszTarget, register const char * pszSource) … … 586 597 * @param sErr Error code id. 587 598 * @status completely implemented. 588 * @author knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)599 * @author knut st. osmundsen (knut.stange.osmundsen@mynd.no) 589 600 */ 590 601 const char * GetErrorMsg(short sErr) … … 616 627 * @sketch Loop thru the table. 617 628 * @status completely implemented. 618 * @author knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)629 * @author knut st. osmundsen (knut.stange.osmundsen@mynd.no) 619 630 */ 620 631 int LookupKrnlEntry(unsigned short usBuild, unsigned short fKernel, unsigned char cObjects) -
trunk/src/win32k/include/probkrnl.h
r4347 r4781 1 /* $Id: probkrnl.h,v 1.1 6 2000-10-01 02:58:17bird Exp $1 /* $Id: probkrnl.h,v 1.17 2000-12-11 06:34:45 bird Exp $ 2 2 * 3 3 * Include file for ProbKrnl. 4 4 * 5 * Copyright (c) 1998-2000 knut st. osmundsen (knut.stange.osmundsen@ pmsc.no)5 * Copyright (c) 1998-2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no) 6 6 * 7 7 * Project Odin Software License can be found in LICENSE.TXT … … 16 16 * Defined Constants And Macros * 17 17 *******************************************************************************/ 18 #define NBR_OF_KRNLIMPORTS 40/* When this is changed make sure to */18 #define NBR_OF_KRNLIMPORTS 52 /* When this is changed make sure to */ 19 19 /* update the aImportTab in probkrnl.c */ 20 20 /* and make test faker in test.h and */ 21 /* the appropriate fake.c fakea.asm.*/21 /* the appropriate fake.c or fakea.asm.*/ 22 22 #define MAX_LENGTH_NAME 32 /* Max length for the function. */ 23 23
Note:
See TracChangeset
for help on using the changeset viewer.