home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 July / VPR0107B.BIN / DRIVER / CANOPUS / MVR32 / mvr32.exe / data1.cab / Development_Kit / Vc / Samples / Encode / Encode.h < prev    next >
C/C++ Source or Header  |  2001-02-09  |  974b  |  40 lines

  1. // Encode.h : ENCODE アプリケーションのメイン ヘッダー ファイル
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // メイン シンボル
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CEncodeApp:
  12. // このクラスの動作の定義に関しては Encode.cpp ファイルを参照してください。
  13. //
  14.  
  15. class CEncodeApp : public CWinApp
  16. {
  17. public:
  18.     CEncodeApp();
  19.  
  20. // オーバーライド
  21.     // ClassWizard は仮想関数を生成しオーバーライドします。
  22.     //{{AFX_VIRTUAL(CEncodeApp)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     //}}AFX_VIRTUAL
  26.  
  27. // インプリメンテーション
  28.  
  29.     //{{AFX_MSG(CEncodeApp)
  30.     afx_msg void OnAppAbout();
  31.         // メモ - ClassWizard はこの位置にメンバ関数を追加または削除します。
  32.         //        この位置に生成されるコードを編集しないでください。
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.  
  40.