source:
trunk/include/windllpe2lx.h@
960
| Last change on this file since 960 was 953, checked in by , 26 years ago | |
|---|---|
| File size: 665 bytes | |
| Line | |
|---|---|
| 1 | /* $Id: windllpe2lx.h,v 1.1 1999-09-15 23:29:37 sandervl Exp $ */ |
| 2 | |
| 3 | /* |
| 4 | * Win32 PE2LX Dll class |
| 5 | * |
| 6 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl) |
| 7 | * |
| 8 | * |
| 9 | * Project Odin Software License can be found in LICENSE.TXT |
| 10 | * |
| 11 | */ |
| 12 | #ifndef __WINDLLPE2LX_H__ |
| 13 | #define __WINDLLPE2LX_H__ |
| 14 | |
| 15 | #include <windllbase.h> |
| 16 | #include <winimagepe2lx.h> |
| 17 | |
| 18 | class Win32Pe2LxDll : public Win32Pe2LxImage, public Win32DllBase |
| 19 | { |
| 20 | public: |
| 21 | Win32Pe2LxDll(HINSTANCE hinstance, int NameTableId, int Win32TableId, WIN32DLLENTRY DllEntryPoint); |
| 22 | virtual ~Win32Pe2LxDll(); |
| 23 | |
| 24 | virtual ULONG getApi(char *name); |
| 25 | virtual ULONG getApi(int ordinal); |
| 26 | |
| 27 | virtual BOOL isLxDll(); |
| 28 | |
| 29 | protected: |
| 30 | private: |
| 31 | }; |
| 32 | |
| 33 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
