blob: 4b2f7b2839a59467aed464ad9fa668313ebc3bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef T2DLL_CRESOURCEPLUGIN_H
#define T2DLL_CRESOURCEPLUGIN_H
#include "../common.h"
#include "CFilePlugin.h"
class AFX_CLASS_EXPORT CResourcePlugin : public CFilePlugin {
public:
CResourcePlugin(DWORD type, T2PluginSpecifier& specifier);
virtual ~CResourcePlugin();
virtual DWORD GetPluginStyle() { return 'RPlg'; }
protected:
int m68; // unknown
};
#endif
|