mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
import all functions from lego1 exports
This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
This commit is contained in:
9
LEGO1/mxdsfile.h
Normal file → Executable file
9
LEGO1/mxdsfile.h
Normal file → Executable file
@@ -4,7 +4,14 @@
|
||||
class MxDSFile
|
||||
{
|
||||
public:
|
||||
__declspec(dllexport) long Close();
|
||||
__declspec(dllexport) MxDSFile(const char *,unsigned long);
|
||||
__declspec(dllexport) virtual ~MxDSFile();
|
||||
__declspec(dllexport) virtual long Close();
|
||||
__declspec(dllexport) virtual unsigned long GetBufferSize();
|
||||
__declspec(dllexport) virtual unsigned long GetStreamBuffersNum();
|
||||
__declspec(dllexport) virtual long Open(unsigned long);
|
||||
__declspec(dllexport) virtual long Read(unsigned char *,unsigned long);
|
||||
__declspec(dllexport) virtual long Seek(long,int);
|
||||
};
|
||||
|
||||
#endif // MXDSFILE_H
|
||||
|
Reference in New Issue
Block a user