Ignore:
Timestamp:
Aug 19, 2000, 4:37:21 PM (25 years ago)
Author:
bird
Message:

More bugs corrected.
It's working now!

Location:
branches/GRACE/src/win32k/include
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/GRACE/src/win32k/include/LdrCalls.h

    r4017 r4046  
    1 /* $Id: LdrCalls.h,v 1.3.4.2 2000-08-15 06:16:04 bird Exp $
     1/* $Id: LdrCalls.h,v 1.3.4.3 2000-08-19 14:37:09 bird Exp $
    22 *
    33 * Prototypes for the loader overrided function.
     
    176176
    177177/**
    178  * LDRGetSem - Requests the loader semaphore..
     178 * LDRRequestSem - Requests the loader semaphore..
    179179 * @returns   NO_ERROR if succesfully.
    180180 *            OS2 errorcode on failure. (ERROR_INTERRUPT?)
    181181 */
    182 #define LDRGetSem()   KSEMRequestMutex((HKMTX)pLdrSem, (ULONG)-1)
     182#define LDRRequestSem()   KSEMRequestMutex((HKMTX)pLdrSem, (ULONG)-1)
    183183
    184184
  • branches/GRACE/src/win32k/include/ldr.h

    r3987 r4046  
    1 /* $Id: ldr.h,v 1.5.4.2 2000-08-11 02:26:06 bird Exp $
     1/* $Id: ldr.h,v 1.5.4.3 2000-08-19 14:37:07 bird Exp $
    22 *
    33 * ldr - Our loader "subsystem" public header file.
     
    218218#define CCHFILENAME     261             /* This is defined in mytkExecPgm.asm too. */
    219219#define CCHARGUMENTS   1536             /* This is defined in mytkExecPgm.asm too. */
     220extern char         fLdrSemTaken;
    220221extern const char   fTkExecPgm;
    221222extern char         achTkExecPgmFilename[CCHFILENAME];
  • branches/GRACE/src/win32k/include/probkrnl.h

    r4018 r4046  
    1 /* $Id: probkrnl.h,v 1.13.4.3 2000-08-15 07:03:25 bird Exp $
     1/* $Id: probkrnl.h,v 1.13.4.4 2000-08-19 14:37:10 bird Exp $
    22 *
    33 * Include file for ProbKrnl.
     
    1616*   Defined Constants And Macros                                               *
    1717*******************************************************************************/
    18 #define NBR_OF_KRNLIMPORTS      31      /* When this is changed make sure to   */
     18#define NBR_OF_KRNLIMPORTS      32      /* When this is changed make sure to   */
    1919                                        /* update the arrays in d32init.c and  */
    2020                                        /* probkrnl.c */
  • branches/GRACE/src/win32k/include/test.h

    r4025 r4046  
    1 /* $Id: test.h,v 1.1.4.2 2000-08-17 08:23:33 bird Exp $
     1/* $Id: test.h,v 1.1.4.3 2000-08-19 14:37:11 bird Exp $
    22 *
    33 * Definitions and declarations for test moduls.
     
    9696ULONG LDRCALL fakeLDRClearSem(void);
    9797ULONG KRNLCALL fakeKSEMRequestMutex(HKMTX hkmtx, ULONG ulTimeout);
     98ULONG KRNLCALL fakeKSEMReleaseMutex(HKMTX hkmtx);
    9899extern HKMTX        fakeLDRSem;
    99100ULONG KRNLCALL   fakeTKFuBuff(PVOID pv, PVOID pvUsr, ULONG cb, ULONG fl);
Note: See TracChangeset for help on using the changeset viewer.