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.
 
 
 
 
 
 

26 lines
615 B

//
// Copyright 1997 - Microsoft
//
// ITAB.H - Generic property tab abstract class
//
#ifndef _ITAB_H_
#define _ITAB_H_
// ITab
class
ITab
{
public: // Methods
STDMETHOD(AddPages)( LPFNADDPROPSHEETPAGE lpfnAddPage, LPARAM lParam, LPUNKNOWN punk ) PURE;
STDMETHOD(ReplacePage)( UINT uPageID, LPFNADDPROPSHEETPAGE lpfnReplaceWith,
LPARAM lParam, LPUNKNOWN punk ) PURE;
STDMETHOD(QueryInformation)( LPWSTR pszAttribute, LPWSTR * pszResult ) PURE;
STDMETHOD(AllowActivation)( BOOL * pfAllow ) PURE;
};
typedef ITab* LPTAB;
#endif // _ITAB_H_