From d5ce0846862de432c211de5315865d41f0f4610f Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 3 Aug 2007 00:46:28 +0200 Subject: [PATCH] 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(+) diff --git a/include/lmerr.h b/include/lmerr.h index abf33eefb6f..47b869ce210 100644 --- a/include/lmerr.h +++ b/include/lmerr.h @@ -21,6 +21,8 @@ #ifndef __WINE_LMERR_H #define __WINE_LMERR_H +#include + #define NERR_Success 0 #define NERR_BASE 2100 diff --git a/include/lmserver.h b/include/lmserver.h index 1d738fcdf76..94a4844894a 100644 --- a/include/lmserver.h +++ b/include/lmserver.h @@ -19,6 +19,7 @@ #define _LMSERVER_ #include +#include #ifdef __cplusplus extern "C" { diff --git a/include/lmshare.h b/include/lmshare.h index 082abf2f916..8364969c2a1 100644 --- a/include/lmshare.h +++ b/include/lmshare.h @@ -22,6 +22,8 @@ extern "C" { #endif +#include + typedef struct _SHARE_INFO_0 { LMSTR shi0_netname; } SHARE_INFO_0, *PSHARE_INFO_0, *LPSHARE_INFO_0;