Last change
on this file since 80 was
80,
checked in by Sam Hocevar, 14 years ago
|
- Adding the Golgotha source code. Not sure what's going to be interesting
in there, but since it's all public domain, there's certainly stuff to
pick up.
|
-
Property svn:keywords set to
Id
|
File size:
818 bytes
|
Line | |
---|
1 | //-----------------------------------------------------------------------------
|
---|
2 | // -------------------
|
---|
3 | // File ....: fltapi.h
|
---|
4 | // -------------------
|
---|
5 | // Author...: Gus Grubba
|
---|
6 | // Date ....: September 1995
|
---|
7 | //
|
---|
8 | // History .: Sep, 07 1995 - Started
|
---|
9 | //
|
---|
10 | //-----------------------------------------------------------------------------
|
---|
11 |
|
---|
12 | //-- FLT Interface class
|
---|
13 |
|
---|
14 | class FLTInterface {
|
---|
15 |
|
---|
16 | public:
|
---|
17 |
|
---|
18 | virtual HINSTANCE AppInst () = 0;
|
---|
19 | virtual HWND AppWnd () = 0;
|
---|
20 | virtual DllDir *AppDllDir () = 0;
|
---|
21 | virtual TCHAR *GetDir (int i) = 0;
|
---|
22 | virtual int GetMapDirCount () = 0;
|
---|
23 | virtual TCHAR *GetMapDir (int i) = 0;
|
---|
24 | virtual BOOL CreatePreview (HWND,Bitmap**,int,int,int,float,Bitmap**,DWORD) = 0;
|
---|
25 | virtual Interface *GetMaxInterface ( ) = 0;
|
---|
26 |
|
---|
27 | };
|
---|
28 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.