added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

28
lib/maxsdk40/fltapi.h Executable file
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;
};