* include/afxres.h: Remove the \r from the line ending.
* include/errorrep.h: Ditto. * include/shldisp.h: Ditto. * include/tschema.h: Ditto. * lib/dhcpcsvc.def: Ditto. * lib/uxtheme.def: Ditto. * lib/wldap32.def: Ditto.
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
#ifndef _AFXRES_H
|
||||
#define _AFXRES_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef _WINDOWS_H
|
||||
#include <windows.h>
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef _WINDOWS_H
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
/* IDC_STATIC is documented in winuser.h, but not defined. */
|
||||
#ifndef IDC_STATIC
|
||||
#define IDC_STATIC (-1)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
#ifndef IDC_STATIC
|
||||
#define IDC_STATIC (-1)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
@@ -1,40 +1,40 @@
|
||||
#ifndef _ERRORREP_H
|
||||
#define _ERRORREP_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
typedef enum {
|
||||
frrvErr = 3,
|
||||
frrvErrNoDW = 4,
|
||||
frrvErrTimeout = 5,
|
||||
frrvLaunchDebugger = 6,
|
||||
frrvOk = 0,
|
||||
frrvOkHeadless = 7,
|
||||
frrvOkManifest = 1,
|
||||
frrvOkQueued = 2
|
||||
} EFaultRepRetVal;
|
||||
BOOL WINAPI AddERExcludedApplicationA(LPCSTR);
|
||||
BOOL WINAPI AddERExcludedApplicationW(LPCWSTR);
|
||||
EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS,DWORD);
|
||||
#endif
|
||||
|
||||
#ifdef UNICODE
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
#define AddERExcludedApplication AddERExcludedApplicationW
|
||||
#endif
|
||||
#else
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
#define AddERExcludedApplication AddERExcludedApplicationA
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
#ifndef _ERRORREP_H
|
||||
#define _ERRORREP_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
typedef enum {
|
||||
frrvErr = 3,
|
||||
frrvErrNoDW = 4,
|
||||
frrvErrTimeout = 5,
|
||||
frrvLaunchDebugger = 6,
|
||||
frrvOk = 0,
|
||||
frrvOkHeadless = 7,
|
||||
frrvOkManifest = 1,
|
||||
frrvOkQueued = 2
|
||||
} EFaultRepRetVal;
|
||||
BOOL WINAPI AddERExcludedApplicationA(LPCSTR);
|
||||
BOOL WINAPI AddERExcludedApplicationW(LPCWSTR);
|
||||
EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS,DWORD);
|
||||
#endif
|
||||
|
||||
#ifdef UNICODE
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
#define AddERExcludedApplication AddERExcludedApplicationW
|
||||
#endif
|
||||
#else
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
#define AddERExcludedApplication AddERExcludedApplicationA
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
@@ -1,61 +1,61 @@
|
||||
#ifndef _SHLDISP_H
|
||||
#define _SHLDISP_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define ACO_AUTOSUGGEST 0x01
|
||||
|
||||
#undef INTERFACE
|
||||
#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;
|
||||
};
|
||||
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
|
||||
|
||||
#undef INTERFACE
|
||||
#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;
|
||||
};
|
||||
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 */
|
||||
#ifndef _SHLDISP_H
|
||||
#define _SHLDISP_H
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define ACO_AUTOSUGGEST 0x01
|
||||
|
||||
#undef INTERFACE
|
||||
#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;
|
||||
};
|
||||
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
|
||||
|
||||
#undef INTERFACE
|
||||
#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;
|
||||
};
|
||||
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 */
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user