* include/comcat.h: INTERFACE should not remain defined
    at the end of the header.
    * include/docobj.h: Ditto.
    * include/exdisp.h: Ditto.
    * include/intshcut.h: Ditto.
    * include/mlang.h: Ditto.
    * include/mshtml.h: Ditto.
    * include/oaidl.h: Ditto.
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#ifndef _SHLDISP_H
 | 
						|
#define _SHLDISP_H
 | 
						|
#if __GNUC__ >= 3
 | 
						|
#pragma GCC system_header
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#define ACO_AUTOSUGGEST 0x01
 | 
						|
 | 
						|
#define INTERFACE IAutoComplete
 | 
						|
DECLARE_INTERFACE_(IAutoComplete, IUnknown)
 | 
						|
{
 | 
						|
	STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE;
 | 
						|
	STDMETHOD_(ULONG,AddRef)(THIS) PURE;
 | 
						|
	STDMETHOD_(ULONG,Release)(THIS) PURE;
 | 
						|
	STDMETHOD(Init)(THIS_ HWND,IUnknown*,LPCOLESTR,LPCOLESTR) PURE;
 | 
						|
	STDMETHOD(Enable)(THIS_ BOOL) PURE;
 | 
						|
};
 | 
						|
#undef INTERFACE
 | 
						|
typedef IAutoComplete *LPAUTOCOMPLETE;
 | 
						|
 | 
						|
#ifdef COBJMACROS
 | 
						|
#define IAutoComplete_QueryInterface(T,a,b) (T)->lpVtbl->QueryInterface(T,a,b)
 | 
						|
#define IAutoComplete_AddRef(T) (T)->lpVtbl->AddRef(T)
 | 
						|
#define IAutoComplete_Release(T) (T)->lpVtbl->Release(T)
 | 
						|
#define IAutoComplete_Init(T,a,b,c,d) (T)->lpVtbl->Init(T,a,b,c,d)
 | 
						|
#define IAutoComplete_Enable(T,a) (T)->lpVtbl->Enable(T,a)
 | 
						|
#endif
 | 
						|
 | 
						|
#define INTERFACE IAutoComplete2
 | 
						|
DECLARE_INTERFACE_(IAutoComplete2, IAutoComplete)
 | 
						|
{
 | 
						|
	STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE;
 | 
						|
	STDMETHOD_(ULONG,AddRef)(THIS) PURE;
 | 
						|
	STDMETHOD_(ULONG,Release)(THIS) PURE;
 | 
						|
	STDMETHOD(Init)(THIS_ HWND,IUnknown*,LPCOLESTR,LPCOLESTR) PURE;
 | 
						|
	STDMETHOD(Enable)(THIS_ BOOL) PURE;
 | 
						|
	STDMETHOD(SetOptions)(THIS_ DWORD) PURE;
 | 
						|
	STDMETHOD(GetOptions)(THIS_ DWORD*) PURE;
 | 
						|
};
 | 
						|
#undef INTERFACE
 | 
						|
typedef IAutoComplete2 *LPAUTOCOMPLETE2;
 | 
						|
 | 
						|
#ifdef COBJMACROS
 | 
						|
#define IAutoComplete2_QueryInterface(T,a,b) (T)->lpVtbl->QueryInterface(T,a,b)
 | 
						|
#define IAutoComplete2_AddRef(T) (T)->lpVtbl->AddRef(T)
 | 
						|
#define IAutoComplete2_Release(T) (T)->lpVtbl->Release(T)
 | 
						|
#define IAutoComplete2_Init(T,a,b,c,d) (T)->lpVtbl->Init(T,a,b,c,d)
 | 
						|
#define IAutoComplete2_Enable(T,a) (T)->lpVtbl->Enable(T,a)
 | 
						|
#define IAutoComplete2_SetOptions(T,a) (T)->lpVtbl->Enable(T,a)
 | 
						|
#define IAutoComplete2_GetOptions(T,a) (T)->lpVtbl->Enable(T,a)
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* _SHLDISP_H */
 |