Last change
on this file since 954 was 953, checked in by sandervl, 26 years ago |
New headers for kernel32 win32 image classes + removed old ones + nameid.h
|
File size:
776 bytes
|
Rev | Line | |
---|
[953] | 1 | /* $Id: winimagelx.h,v 1.1 1999-09-15 23:29:37 sandervl Exp $ */
|
---|
| 2 |
|
---|
| 3 | /*
|
---|
| 4 | * Win32 LX Image base 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 __WINIMAGELX_H__
|
---|
| 13 | #define __WINIMAGELX_H__
|
---|
| 14 |
|
---|
| 15 | #include <winimagebase.h>
|
---|
| 16 |
|
---|
| 17 | class Win32LxImage : public virtual Win32ImageBase
|
---|
| 18 | {
|
---|
| 19 | public:
|
---|
| 20 | Win32LxImage(HINSTANCE hInstance);
|
---|
| 21 | virtual ~Win32LxImage();
|
---|
| 22 |
|
---|
| 23 | virtual HRSRC findResourceA(LPCSTR lpszName, LPSTR lpszType, ULONG lang = LANG_GETFIRST);
|
---|
| 24 | virtual ULONG getResourceSizeA(LPCSTR lpszName, LPSTR lpszType, ULONG lang = LANG_GETFIRST);
|
---|
| 25 |
|
---|
| 26 | virtual ULONG getVersionSize();
|
---|
| 27 | virtual BOOL getVersionStruct(char *verstruct, ULONG bufLength);
|
---|
| 28 |
|
---|
| 29 | protected:
|
---|
| 30 | private:
|
---|
| 31 | };
|
---|
| 32 |
|
---|
| 33 | #endif //__WINIMAGELX_H__
|
---|
| 34 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.