home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / dbeng / dbeng.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-11  |  860 b   |  39 lines

  1. // dbeng.h : main header file for the DBENG application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDbengApp:
  12. // See dbeng.cpp for the implementation of this class
  13. //
  14.  
  15. class CDbengApp : public CWinApp
  16. {
  17. public:
  18.     CDbengApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.  
  25.     //{{AFX_MSG(CDbengApp)
  26.     afx_msg void OnAppAbout();
  27.     afx_msg void OnDBEngineSample();
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30. };
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // VB-Event extern declarations
  34.  
  35. //{{AFX_VBX_REGISTER()
  36. //}}AFX_VBX_REGISTER
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.