| 1 | ;
|
|---|
| 2 | ; emxdll.def
|
|---|
| 3 | ;
|
|---|
| 4 | ; Copyright (c) 1992-1998 by Eberhard Mattes
|
|---|
| 5 | ;
|
|---|
| 6 | ; This file is part of emx.
|
|---|
| 7 | ;
|
|---|
| 8 | ; emx is free software; you can redistribute it and/or modify it
|
|---|
| 9 | ; under the terms of the GNU General Public License as published by
|
|---|
| 10 | ; the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 11 | ; any later version.
|
|---|
| 12 | ;
|
|---|
| 13 | ; emx is distributed in the hope that it will be useful,
|
|---|
| 14 | ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 15 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 16 | ; GNU General Public License for more details.
|
|---|
| 17 | ;
|
|---|
| 18 | ; You should have received a copy of the GNU General Public License
|
|---|
| 19 | ; along with emx; see the file COPYING. If not, write to
|
|---|
| 20 | ; the Free Software Foundation, 59 Temple Place - Suite 330,
|
|---|
| 21 | ; Boston, MA 02111-1307, USA.
|
|---|
| 22 | ;
|
|---|
| 23 | ; As special exception, emx.dll can be distributed without source code
|
|---|
| 24 | ; unless it has been changed. If you modify emx.dll, this exception
|
|---|
| 25 | ; no longer applies and you must remove this paragraph from all source
|
|---|
| 26 | ; files for emx.dll.
|
|---|
| 27 | ;
|
|---|
| 28 |
|
|---|
| 29 | LIBRARY EMX INITINSTANCE TERMINSTANCE
|
|---|
| 30 | DESCRIPTION 'emx.dll 0.9d -- Copyright (c) 1992-1998 by Eberhard Mattes'
|
|---|
| 31 | DATA
|
|---|
| 32 | MULTIPLE NONSHARED
|
|---|
| 33 | SEGMENTS
|
|---|
| 34 | TEXT16 CLASS 'CODE' ALIAS
|
|---|
| 35 | _TEXT CLASS 'CODE' ALIAS
|
|---|
| 36 | DATA32 CLASS 'DATA' ALIAS MIXED1632
|
|---|
| 37 | BSS16 CLASS 'BSS' ALIAS
|
|---|
| 38 | BSS32 CLASS 'BSS' ALIAS MIXED1632
|
|---|
| 39 | c_common CLASS 'BSS' ALIAS MIXED1632
|
|---|
| 40 | COMMON32 CLASS 'COMMON' SHARED
|
|---|
| 41 | EXPORTS
|
|---|
| 42 | EMX_INIT = emx_init @1 RESIDENTNAME
|
|---|
| 43 | EMX_SYSCALL = emx_syscall @2 RESIDENTNAME
|
|---|
| 44 | EMX_16TO32 = _emx_16to32 @3 RESIDENTNAME
|
|---|
| 45 | EMX_32TO16 = _emx_32to16 @4 RESIDENTNAME
|
|---|
| 46 | EMX_THUNK1 = _emx_thunk1 @5 RESIDENTNAME
|
|---|
| 47 | EMX_EXCEPTION = exception @6 RESIDENTNAME
|
|---|
| 48 | EMX_REVISION = emx_revision @128 RESIDENTNAME
|
|---|