includes: Make headers C++ compatible.
This commit is contained in:
parent
74b240bff2
commit
4b340fff6f
|
@ -39,7 +39,16 @@ typedef struct _MANAGEDAPPLICATION
|
|||
BOOL bInstalled;
|
||||
} MANAGEDAPPLICATION, *PMANAGEDAPPLICATION;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
DWORD WINAPI CommandLineFromMsiDescriptor(WCHAR*,WCHAR*,DWORD*);
|
||||
DWORD WINAPI GetManagedApplications(GUID*,DWORD,DWORD,LPDWORD,PMANAGEDAPPLICATION*);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _APPMGMT_H */
|
||||
|
|
|
@ -27,8 +27,17 @@ typedef DWORD CONFIGRET;
|
|||
#define MAX_GUID_STRING_LEN 39
|
||||
#define MAX_PROFILE_LEN 80
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
CONFIGRET WINAPI CM_Get_Device_ID_ListA( PCSTR, PCHAR, ULONG, ULONG );
|
||||
CONFIGRET WINAPI CM_Get_Device_ID_ListW( PCWSTR, PWCHAR, ULONG, ULONG );
|
||||
#define CM_Get_Device_ID_List WINELIB_NAME_AW(CM_Get_Device_ID_List)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _CFGMGR32_H_ */
|
||||
|
|
|
@ -21,6 +21,10 @@
|
|||
|
||||
#include <guiddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef ULONG64 TRACEHANDLE, *PTRACEHANDLE;
|
||||
|
||||
struct _EVENT_TRACE_LOGFILEA;
|
||||
|
@ -178,4 +182,8 @@ ULONG WINAPI RegisterTraceGuidsA(WMIDPREQUEST,PVOID,LPCGUID,ULONG,PTRACE_GUID_RE
|
|||
ULONG WINAPI RegisterTraceGuidsW(WMIDPREQUEST,PVOID,LPCGUID,ULONG,PTRACE_GUID_REGISTRATION,LPCWSTR,LPCWSTR,PTRACEHANDLE);
|
||||
#define RegisterTraceGuids WINELIB_NAME_AW(RegisterTraceGuids)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _EVNTRACE_ */
|
||||
|
|
|
@ -21,6 +21,11 @@
|
|||
#ifndef __WINE_ICMPAPI_H
|
||||
#define __WINE_ICMPAPI_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
HANDLE WINAPI IcmpCreateFile(
|
||||
VOID
|
||||
);
|
||||
|
@ -41,4 +46,8 @@ DWORD WINAPI IcmpSendEcho(
|
|||
);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_ICMPAPI_H */
|
||||
|
|
|
@ -142,6 +142,11 @@ typedef enum tagMSIDBSTATE
|
|||
MSIDBSTATE_WRITE = 1
|
||||
} MSIDBSTATE;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* view manipulation */
|
||||
UINT WINAPI MsiViewFetch(MSIHANDLE,MSIHANDLE*);
|
||||
UINT WINAPI MsiViewExecute(MSIHANDLE,MSIHANDLE);
|
||||
|
@ -307,4 +312,8 @@ UINT WINAPI MsiSetInstallLevel(MSIHANDLE, int);
|
|||
|
||||
MSIHANDLE WINAPI MsiGetLastErrorRecord(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_MSIQUERY_H */
|
||||
|
|
|
@ -109,6 +109,11 @@ typedef struct _POWER_POLICY {
|
|||
} POWER_POLICY,
|
||||
*PPOWER_POLICY;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef BOOLEAN (CALLBACK* PWRSCHEMESENUMPROC)(UINT, DWORD, LPWSTR, DWORD, LPWSTR, PPOWER_POLICY, LPARAM);
|
||||
|
||||
NTSTATUS WINAPI CallNtPowerInformation(POWER_INFORMATION_LEVEL, PVOID, ULONG, PVOID, ULONG);
|
||||
|
@ -132,4 +137,8 @@ BOOLEAN WINAPI WriteGlobalPwrPolicy(PGLOBAL_POWER_POLICY);
|
|||
BOOLEAN WINAPI WriteProcessorPwrScheme(UINT, PMACHINE_PROCESSOR_POWER_POLICY);
|
||||
BOOLEAN WINAPI WritePwrScheme(PUINT, LPWSTR, LPWSTR, PPOWER_POLICY);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _POWRPROF_H */
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
#ifndef __WINE_RPCDCEP_H
|
||||
#define __WINE_RPCDCEP_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct _RPC_VERSION {
|
||||
unsigned short MajorVersion;
|
||||
unsigned short MinorVersion;
|
||||
|
@ -182,4 +186,8 @@ RPCRTAPI UINT RPC_ENTRY
|
|||
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /*__WINE_RPCDCEP_H */
|
||||
|
|
|
@ -33,6 +33,10 @@
|
|||
#include <rpc.h>
|
||||
#include <rpcndr.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct tagCInterfaceStubVtbl *PCInterfaceStubVtblList;
|
||||
typedef struct tagCInterfaceProxyVtbl *PCInterfaceProxyVtblList;
|
||||
typedef const char *PCInterfaceName;
|
||||
|
@ -357,4 +361,8 @@ RPCRTAPI HRESULT RPC_ENTRY
|
|||
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /*__WINE_RPCDCE_H */
|
||||
|
|
|
@ -22,6 +22,10 @@
|
|||
|
||||
#include <commctrl.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* setupapi doesn't use the normal convention, it adds an underscore before A/W */
|
||||
#ifdef __WINESRC__
|
||||
# define DECL_WINELIB_SETUPAPI_TYPE_AW(type) /* nothing */
|
||||
|
@ -1818,6 +1822,10 @@ PSTR WINAPI UnicodeToMultiByte(PCWSTR lpUnicodeStr, UINT uCodePage);
|
|||
BOOL WINAPI UnmapAndCloseFile(HANDLE, HANDLE, PVOID);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#undef DECL_WINELIB_SETUPAPI_TYPE_AW
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -20,6 +20,10 @@
|
|||
#ifndef _WINNETWK_H_
|
||||
#define _WINNETWK_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Network types
|
||||
*/
|
||||
|
@ -401,5 +405,8 @@ UINT WINAPI WNetEnumCachedPasswords( LPSTR, WORD, BYTE, ENUMPASSWORDPROC, DWORD)
|
|||
DWORD WINAPI WNetGetCachedPassword( LPSTR, WORD, LPSTR, LPWORD, BYTE );
|
||||
DWORD WINAPI WNetCachePassword( LPSTR, WORD, LPSTR, WORD, BYTE, WORD );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _WINNETWK_H_ */
|
||||
|
|
Loading…
Reference in New Issue