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.

25 lines
615 B

  1. //
  2. // Copyright 1997 - Microsoft
  3. //
  4. // ITAB.H - Generic property tab abstract class
  5. //
  6. #ifndef _ITAB_H_
  7. #define _ITAB_H_
  8. // ITab
  9. class
  10. ITab
  11. {
  12. public: // Methods
  13. STDMETHOD(AddPages)( LPFNADDPROPSHEETPAGE lpfnAddPage, LPARAM lParam, LPUNKNOWN punk ) PURE;
  14. STDMETHOD(ReplacePage)( UINT uPageID, LPFNADDPROPSHEETPAGE lpfnReplaceWith,
  15. LPARAM lParam, LPUNKNOWN punk ) PURE;
  16. STDMETHOD(QueryInformation)( LPWSTR pszAttribute, LPWSTR * pszResult ) PURE;
  17. STDMETHOD(AllowActivation)( BOOL * pfAllow ) PURE;
  18. };
  19. typedef ITab* LPTAB;
  20. #endif // _ITAB_H_