| 1 | ; $Id: kDevTest.def,v 1.1 2002-09-30 23:53:52 bird Exp $
|
|---|
| 2 | ;
|
|---|
| 3 | ; Device Helper Implmenetation for Ring-3 testing.
|
|---|
| 4 | ;
|
|---|
| 5 | ; Copyright (c) 2000-2002 knut st. osmundsen <bird@anduin.net>
|
|---|
| 6 | ;
|
|---|
| 7 | ;
|
|---|
| 8 | ; This file is part of kKrnlLib.
|
|---|
| 9 | ;
|
|---|
| 10 | ; kKrnlLib is free software; you can redistribute it and/or modify
|
|---|
| 11 | ; it under the terms of the GNU General Public License as published by
|
|---|
| 12 | ; the Free Software Foundation; either version 2 of the License, or
|
|---|
| 13 | ; (at your option) any later version.
|
|---|
| 14 | ;
|
|---|
| 15 | ; kKrnlLib is distributed in the hope that it will be useful,
|
|---|
| 16 | ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 17 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 18 | ; GNU General Public License for more details.
|
|---|
| 19 | ;
|
|---|
| 20 | ; You should have received a copy of the GNU General Public License
|
|---|
| 21 | ; along with kKrnlLib; if not, write to the Free Software
|
|---|
| 22 | ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| 23 | ;
|
|---|
| 24 | ;
|
|---|
| 25 | NAME kDevTest WINDOWCOMPAT
|
|---|
| 26 | DESCRIPTION "Ring 3 Device Tester - Copyright (c) 1998-2002 knut st. osmundsen"
|
|---|
| 27 |
|
|---|
| 28 | STACKSIZE 4096
|
|---|
| 29 | ;CODE PRELOAD EXECUTEREAD
|
|---|
| 30 | ;DATA PRELOAD
|
|---|
| 31 |
|
|---|
| 32 | SEGMENTS
|
|---|
| 33 | DATA16 class 'FAR_DATA'
|
|---|
| 34 | DATA16_BSS class 'FAR_DATA'
|
|---|
| 35 | DATA16_CONST class 'FAR_DATA'
|
|---|
| 36 | DATA16_GLOBAL class 'FAR_DATA'
|
|---|
| 37 | DATA16_INIT class 'FAR_DATA'
|
|---|
| 38 | DATA16_INIT_BSS class 'FAR_DATA'
|
|---|
| 39 | DATA16_INIT_CONST class 'FAR_DATA'
|
|---|
| 40 |
|
|---|
| 41 | CODE16 class 'CODE'
|
|---|
| 42 | CODE16_IOSEG class 'CODE'
|
|---|
| 43 | CODE16_INIT class 'CODE'
|
|---|
| 44 |
|
|---|
| 45 | CODE32 class 'CODE'
|
|---|
| 46 | DATA32 class 'DATA'
|
|---|
| 47 | c_common class 'DATA'
|
|---|
| 48 | DDE4_DATA32 class 'DATA'
|
|---|
| 49 | CTOR_DTOR1 class 'DATA'
|
|---|
| 50 | CTOR_DTOR2 class 'DATA'
|
|---|
| 51 | CTOR_DTOR3 class 'DATA'
|
|---|
| 52 | _VFT class 'CONST'
|
|---|
| 53 | CONST32_RO class 'CONST'
|
|---|
| 54 | EH_DATA class 'CONST'
|
|---|
| 55 | BSS32 class 'BSS'
|
|---|
| 56 |
|
|---|
| 57 | IMPORTS
|
|---|
| 58 | _DosWrite = DOSCALL1.282
|
|---|
| 59 | _DOS16OPEN = DOSCALL1.70
|
|---|
| 60 | _DOS16CLOSE = DOSCALL1.59
|
|---|
| 61 | DosQuerySysState = DOSCALL1.368
|
|---|
| 62 |
|
|---|