home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / Papers / aSEPiA example source / plugin / Plugin 1 / CPluginInfo.cpp < prev   
Encoding:
C/C++ Source or Header  |  1999-06-25  |  406 b   |  21 lines  |  [TEXT/CWIE]

  1. /*---------------------------------------------------------------
  2.  
  3.     CPluginInfo.cpp
  4.  
  5. ---------------------------------------------------------------*/
  6.  
  7. #include "CPluginInfo.h"
  8. #include <string.h>
  9.  
  10. void CPluginInfo::GetPluginName( char* outName )
  11. {
  12.     const char*    theName = "Frame Counter";
  13.     strncpy( outName, theName, 255 );
  14. }
  15.  
  16. void CPluginInfo::GetPluginVersion( short* outVersion )
  17. {
  18.     *outVersion = 1;
  19.  
  20. }
  21.