home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------
-
- IPluginInfoIntf.h
-
- Interface for getting informatio about the plugin such as its
- name and version.
-
- ---------------------------------------------------------------*/
-
- #ifndef IPluginInfoIntf_H
- #define IPluginInfoIntf_H
-
-
- const unsigned long IPluginInfo_ID = 'PInf';
-
- class IPluginInfoIntf
- {
- public:
- virtual void GetPluginName( char* outName ) = 0;
- virtual void GetPluginVersion( short* outVersion ) = 0;
-
- };
-
- #endif