home *** CD-ROM | disk | FTP | other *** search
/ Looney Tunes Photo Fun / LooneyTunesPhotoFun.iso / Daosdk / DISK4 / DAOSDK.1 / multthrd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-06  |  1.2 KB  |  54 lines

  1. #ifndef _QD_H_
  2. #define _QD_H_
  3.  
  4. // qd.h : main header file for the QD application
  5. //
  6. #include "dbdao.h"
  7. #include "dbdaoerr.h"
  8.  
  9. #ifndef __AFXWIN_H__
  10.     #error include 'stdafx.h' before including this file for PCH
  11. #endif
  12.  
  13. #include "resource.h"       // main symbols
  14.  
  15. #define UPDATEHINT_NEWDATABASE    1L
  16. #define UPDATEHINT_NEWQUERYDEF    2L
  17.  
  18. #define CBMAXNAME                64L
  19. #define CMAXRECORDS                1000L
  20.  
  21. #define SZPROPINFO                _T("Info")
  22. #define QUERYDEF_NEW            0x0001L
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CQdApp:
  26. // See qd.cpp for the implementation of this class
  27. //
  28.  
  29. class CQdApp : public CWinApp
  30. {
  31. public:
  32.     CQdApp();
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CQdApp)
  37.     public:
  38.     virtual BOOL InitInstance();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42.  
  43.     //{{AFX_MSG(CQdApp)
  44.     afx_msg void OnAppAbout();
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.         //    DO NOT EDIT what you see in these blocks of generated code !
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.  
  54. #endif    //_QD_H_