Last change
on this file since 1036 was 953, checked in by sandervl, 26 years ago |
New headers for kernel32 win32 image classes + removed old ones + nameid.h
|
File size:
702 bytes
|
Line | |
---|
1 | /* $Id: windllpeldr.h,v 1.1 1999-09-15 23:29:37 sandervl Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Win32 PE loader Dll class
|
---|
5 | *
|
---|
6 | * Copyright 1998-1999 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | *
|
---|
8 | *
|
---|
9 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
10 | *
|
---|
11 | */
|
---|
12 | #ifndef __WINDLLPELDR_H__
|
---|
13 | #define __WINDLLPELDR_H__
|
---|
14 |
|
---|
15 | #include <windllbase.h>
|
---|
16 | #include <winimagepeldr.h>
|
---|
17 |
|
---|
18 | class Win32PeLdrDll : public Win32PeLdrImage, public Win32DllBase
|
---|
19 | {
|
---|
20 | public:
|
---|
21 | Win32PeLdrDll(char *szDllName, Win32ImageBase *parentImage = NULL);
|
---|
22 | virtual ~Win32PeLdrDll();
|
---|
23 |
|
---|
24 | virtual BOOL init(ULONG reservedMem);
|
---|
25 | virtual ULONG getApi(char *name);
|
---|
26 | virtual ULONG getApi(int ordinal);
|
---|
27 |
|
---|
28 | virtual BOOL isLxDll();
|
---|
29 |
|
---|
30 | protected:
|
---|
31 | private:
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif //__WINDLLPELDR_H__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.