Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
//-----------------------------------------------------------------------------
// -------------------
// File ....: fltapi.h
// -------------------
// Author...: Gus Grubba
// Date ....: September 1995
//
// History .: Sep, 07 1995 - Started
//
//-----------------------------------------------------------------------------
//-- FLT Interface class
class FLTInterface {
public:
virtual HINSTANCE AppInst () = 0;
virtual HWND AppWnd () = 0;
virtual DllDir *AppDllDir () = 0;
virtual TCHAR *GetDir (int i) = 0;
virtual int GetMapDirCount () = 0;
virtual TCHAR *GetMapDir (int i) = 0;
virtual BOOL CreatePreview (HWND,Bitmap**,int,int,int,float,Bitmap**,DWORD) = 0;
virtual Interface *GetMaxInterface ( ) = 0;
};