Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
859 B

  1. /****************************************************************************\
  2. *
  3. * MSLUPROP.H
  4. *
  5. * Created: William Taylor (wtaylor) 12/14/00
  6. *
  7. * MS Ratings Property Sheet Class
  8. *
  9. \****************************************************************************/
  10. #ifndef MSLU_PROPSHEET_H
  11. #define MSLU_PROPSHEET_H
  12. struct PRSD; // Forward Declaration
  13. class PropSheet{
  14. private:
  15. PROPSHEETHEADER psHeader;
  16. public:
  17. PropSheet();
  18. ~PropSheet();
  19. BOOL Init(HWND hwnd, int nPages, char *szCaption, BOOL fApplyNow);
  20. int Run();
  21. void MakePropPage( HPROPSHEETPAGE hPage );
  22. int PropPageCount( void ) { return psHeader.nPages; }
  23. void SetStartPage( int m_nStartPage ) { psHeader.nStartPage = m_nStartPage; }
  24. };
  25. #endif