home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------
-
- CPluginInfo.cpp
-
- ---------------------------------------------------------------*/
-
- #include "CPluginInfo.h"
- #include <string.h>
-
- void CPluginInfo::GetPluginName( char* outName )
- {
- const char* theName = "Frame Counter";
- strncpy( outName, theName, 255 );
- }
-
- void CPluginInfo::GetPluginVersion( short* outVersion )
- {
- *outVersion = 1;
-
- }
-