Ignore:
Timestamp:
Aug 23, 2000, 6:25:46 AM (25 years ago)
Author:
bird
Message:

Added missing fakefunctions. Corrections of some bugs.
TestKernels.cmd runs fine.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GRACE/src/win32k/test/win32ktst.c

    r4025 r4073  
    1 /* $Id: win32ktst.c,v 1.1.4.4 2000-08-17 08:23:35 bird Exp $
     1/* $Id: win32ktst.c,v 1.1.4.5 2000-08-23 04:25:46 bird Exp $
    22 *
    33 * Win32k test module.
     
    5555
    5656
     57
     58
     59
    5760/** @design Win32k Ring-3 Testing
    5861 * I'll try to make it possible to test parts or all the win32k code in ring-3.
     
    136139 *      7) Testing finished - thunk stack back to 32-bit.
    137140 */
     141
    138142
    139143/*******************************************************************************
     
    225229*******************************************************************************/
    226230extern BOOL     fInited;                /* malloc.c */
    227 const char *    pszInternalRevision = "\r\nInternal revision 14.040_W4";
    228231int             cObjectsFake = 14;
    229232OTE             aKrnlOTE[24];
     
    240243    #define QS_MTE         0x0004
    241244#endif
     245
    242246
    243247/*******************************************************************************
     
    533537}
    534538
    535 /**
    536  * Initiate workers (imported kernel functions / vars)
    537  * @status    partially implemented.
    538  * @author    knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
    539  */
    540 void  workersinit(void)
    541 {
    542     DosSetMem(&CODE16START, &CODE16END - &CODE16START, PAG_WRITE | PAG_READ);
    543     DosSetMem(&CODE32START, &CODE32END - &CODE32START, PAG_WRITE | PAG_READ);
    544 }
    545 
    546539
    547540/**
     
    682675    int         rc = 1;
    683676    RP32INIT    rpinit;
    684     char *      pszInitArgs = "-C1 -L:N -Verbose -Quiet -Elf:Yes -Pe:Mixed -Script:Yes -W4 -Heap:512000 -ResHeap:0256000 -HeapMax:4096000 -ResHeapMax:0x100000";
     677    char *      pszInitArgs = "-C1 -L:E -Verbose -Quiet -Elf:Yes -Pe:Mixed -Script:Yes -W4 -Heap:512000 -ResHeap:0256000 -HeapMax:4096000 -ResHeapMax:0x100000";
     678
     679    options.fLogging = TRUE;
    685680
    686681    /* $elf */
     
    705700            opt.fPE             = FLAGS_PE_MIXED;
    706701            opt.fQuiet          = TRUE;
    707             opt.fLogging        = FALSE;
     702            opt.fLogging        = TRUE;
    708703            opt.usCom           = OUTPUT_COM1;
    709704            opt.ulInfoLevel     = INFOLEVEL_INFOALL;
Note: See TracChangeset for help on using the changeset viewer.