Ignore:
Timestamp:
Sep 2, 2000, 10:49:29 PM (25 years ago)
Author:
bird
Message:

Bugfixing, DevSegDf.h,...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GRACE/src/win32k/dev16/d16init.c

    r4117 r4162  
    1 /* $Id: d16init.c,v 1.6.4.4 2000-08-30 04:11:26 bird Exp $
     1/* $Id: d16init.c,v 1.6.4.5 2000-09-02 20:49:09 bird Exp $
    22 *
    33 * d16init - init routines for both drivers.
     
    3636#include <memory.h>
    3737
     38#include "devSegDf.h"
     39#undef  DATA16_INIT
     40#define DATA16_INIT
     41#undef  CODE16_INIT
     42#define CODE16_INIT
    3843#include "probkrnl.h"
    3944#include "dev1632.h"
     
    4247#include "log.h"
    4348#include "options.h"
     49
     50
    4451
    4552/**
     
    6673
    6774    pRpOut->BPBArray = NULL;
    68     pRpOut->CodeEnd  = (USHORT)&CODE16END;
    69     pRpOut->DataEnd  = (USHORT)&DATA16END;
     75    pRpOut->CodeEnd = (USHORT)&CODE16_INITSTART;
     76    pRpOut->DataEnd = (USHORT)&DATA16_INITSTART;
    7077    pRpOut->Unit     = 0;
    7178    pRpOut->rph.Status = STATUS_DONE;
     
    134141     * Fill return data.
    135142     */
    136     pRpOut->CodeEnd = (USHORT)&CODE16END;
    137     pRpOut->DataEnd = (USHORT)&DATA16END;
     143    pRpOut->CodeEnd = (USHORT)&CODE16_INITSTART;
     144    pRpOut->DataEnd = (USHORT)&DATA16_INITSTART;
    138145    pRpOut->BPBArray= NULL;
    139146    pRpOut->Unit    = 0;
     
    163170 * @param     pRp  Generic IO Control request packet.
    164171 */
    165 USHORT NEAR R0Init16(PRP_GENIOCTL pRp)
     172USHORT NEAR  R0Init16(PRP_GENIOCTL pRp)
    166173{
    167174    USHORT usRc = STATUS_DONE;
     
    244251 *                       (Since this is init code not present after init...)
    245252 */
    246 USHORT NEAR initGetDosTableData(void)
     253USHORT NEAR  initGetDosTableData(void)
    247254{
    248255    APIRET     rc;
Note: See TracChangeset for help on using the changeset viewer.