include: Add the missing guiddef.h include directives.
This commit is contained in:
parent
a603e9871e
commit
785d7a8841
|
@ -21,6 +21,10 @@
|
|||
|
||||
/* FIXME: #include <cfg.h> */
|
||||
|
||||
#ifndef GUID_DEFINED
|
||||
# include <guiddef.h>
|
||||
#endif
|
||||
|
||||
/* cfgmgr32 doesn't use the normal convention, it adds an underscore before A/W */
|
||||
#ifdef WINE_NO_UNICODE_MACROS
|
||||
# define DECL_WINELIB_CFGMGR32_TYPE_AW(type) /* nothing */
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
#ifndef __WINE_DBT_H
|
||||
#define __WINE_DBT_H
|
||||
|
||||
#ifndef GUID_DEFINED
|
||||
# include <guiddef.h>
|
||||
#endif
|
||||
|
||||
/* dbt.h doesn't use the normal convention, it adds an underscore before A/W */
|
||||
#ifdef WINE_NO_UNICODE_MACROS
|
||||
# define DECL_WINELIB_DBT_TYPE_AW(type) /* nothing */
|
||||
|
|
|
@ -19,14 +19,18 @@
|
|||
#ifndef _NTDDNDIS_
|
||||
#define _NTDDNDIS_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <ifdef.h>
|
||||
#include <devpkey.h>
|
||||
/* #include <pciprop.h> */
|
||||
|
||||
#ifndef GUID_DEFINED
|
||||
# include <guiddef.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define _NDIS_CONTROL_CODE(request, method) \
|
||||
CTL_CODE(FILE_DEVICE_PHYSICAL_NETCARD, request, method, FILE_ANY_ACCESS)
|
||||
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
#ifndef __WINE_NTSECAPI_H
|
||||
#define __WINE_NTSECAPI_H
|
||||
|
||||
#ifndef GUID_DEFINED
|
||||
# include <guiddef.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* defined(__cplusplus) */
|
||||
|
|
Loading…
Reference in New Issue