home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / Chapt_04 / Pogy / Setup.h < prev   
Encoding:
C/C++ Source or Header  |  2000-05-11  |  1.4 KB  |  30 lines

  1. #pragma once
  2.  
  3. //-----------------------------------------------------------------------------------//
  4. //              Windows Graphics Programming: Win32 GDI and DirectDraw               //
  5. //                             ISBN  0-13-086985-6                                   //
  6. //                                                                                   //
  7. //  Written            by  Yuan, Feng                             www.fengyuan.com   //
  8. //  Copyright (c) 2000 by  Hewlett-Packard Company                www.hp.com         //
  9. //  Published          by  Prentice Hall PTR, Prentice-Hall, Inc. www.phptr.com      //
  10. //                                                                                   //
  11. //  FileName   : setup.h                                                             //
  12. //  Description: KSetupPogyPage class                                                //
  13. //  Version    : 1.00.000, May 31, 2000                                              //
  14. //-----------------------------------------------------------------------------------//
  15.  
  16. class KSetupPogyPage : public KPropertySheetPage
  17. {
  18.     virtual BOOL DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  19.  
  20. public:    
  21.  
  22.     bool bLogCall;
  23.     bool bDispCall;
  24.  
  25.     void SetButtons(void);
  26.     void ReadButtons(void);
  27.     void ReadOptions(HINSTANCE hInstance);
  28.     void SaveOptions(HINSTANCE hInstance);
  29. };
  30.