source: trunk/src/lz32/lz32.def@ 2015

Last change on this file since 2015 was 527, checked in by phaller, 26 years ago

Fix: linker confused by exporting ordinal 0

File size: 1.0 KB
Line 
1; Win32 32-bit decompression library
2LIBRARY LZ32 INITINSTANCE TERMINSTANCE
3PROTMODE
4DATA MULTIPLE NONSHARED READWRITE LOADONCALL
5CODE LOADONCALL
6
7IMPORTS
8 _lstrcpyAtoW@8 = KERNEL32.lstrcpyAtoW
9 _HEAP_xalloc@12 = KERNEL32.HEAP_xalloc
10 _HEAP_strdupAtoW@12 = KERNEL32.HEAP_strdupAtoW
11 _HEAP_strdupWtoA@12 = KERNEL32.HEAP_strdupWtoA
12
13EXPORTS
14 LZCopy = _LZCopy@8 ; @0 -- PH: can't be exported?
15 LZOpenFileA = _LZOpenFileA@12 @1
16 LZInit = _LZInit@4 @2
17 LZSeek = _LZSeek@12 @3
18 LZRead = _LZRead@12 @4
19 LZClose = _LZClose@4 @5
20 LZStart = _LZStart@0 @6
21 CopyLZFile = _CopyLZFile@8 @7
22 LZDone = _LZDone@0 @8
23 GetExpandedNameA = _GetExpandedNameA@8 @9
24 LZOpenFileW = _LZOpenFileW@12 @10
25 GetExpandedNameW = _GetExpandedNameW@8 @11
26
Note: See TracBrowser for help on using the repository browser.