Module: wine Branch: master Commit: d5ce0846862de432c211de5315865d41f0f4610f URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5ce0846862de432c211de5315...
Author: Francois Gouget fgouget@free.fr Date: Fri Aug 3 00:46:28 2007 +0200
netapi32: Add missing #include directives to the netapi32 headers.
---
include/lmerr.h | 2 ++ include/lmserver.h | 1 + include/lmshare.h | 2 ++ 3 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/include/lmerr.h b/include/lmerr.h index abf33ee..47b869c 100644 --- a/include/lmerr.h +++ b/include/lmerr.h @@ -21,6 +21,8 @@ #ifndef __WINE_LMERR_H #define __WINE_LMERR_H
+#include <winerror.h> + #define NERR_Success 0
#define NERR_BASE 2100 diff --git a/include/lmserver.h b/include/lmserver.h index 1d738fc..94a4844 100644 --- a/include/lmserver.h +++ b/include/lmserver.h @@ -19,6 +19,7 @@ #define _LMSERVER_
#include <winsvc.h> +#include <lmcons.h>
#ifdef __cplusplus extern "C" { diff --git a/include/lmshare.h b/include/lmshare.h index 082abf2..8364969 100644 --- a/include/lmshare.h +++ b/include/lmshare.h @@ -22,6 +22,8 @@ extern "C" { #endif
+#include <lmcons.h> + typedef struct _SHARE_INFO_0 { LMSTR shi0_netname; } SHARE_INFO_0, *PSHARE_INFO_0, *LPSHARE_INFO_0;