mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 12:03:45 +00:00
Make netspi.h private, as some of its declarations conflict with
npapi.h. Spotted by Paul Vriens.
This commit is contained in:
parent
cc8f18f96f
commit
2c95e0205d
3 changed files with 5 additions and 6 deletions
|
@ -1,5 +1,8 @@
|
|||
/*
|
||||
* MPR - Network provider services
|
||||
* Warning: this file apparently existed as part of the Win98 DDK. Some of
|
||||
* the declarations in it conflict with those in the Platform SDK's npapi.h,
|
||||
* therefore this header was made private. Don't try to include both headers.
|
||||
*
|
||||
* Copyright (C) 1999 Ulrich Weigand
|
||||
*
|
||||
|
@ -21,8 +24,8 @@
|
|||
#ifndef _NETSPI_H_
|
||||
#define _NETSPI_H_
|
||||
|
||||
#include <windef.h>
|
||||
#include <winnetwk.h>
|
||||
#include "windef.h"
|
||||
#include "winnetwk.h"
|
||||
|
||||
/*
|
||||
* Note: The Unicode variants of all these routines/structures
|
||||
|
@ -148,4 +151,3 @@ LPVOID WINAPI NPSNotifyGetContextA(NOTIFYCALLBACK);
|
|||
#define NPSNotifyGetContext WINELIB_NAME_AW(NPSNotifyGetContext)
|
||||
|
||||
#endif /* _NETSPI_H_ */
|
||||
|
|
@ -26,7 +26,6 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winuser.h"
|
||||
#include "winnetwk.h"
|
||||
#include "netspi.h"
|
||||
#include "wine/debug.h"
|
||||
#include "winerror.h"
|
||||
|
@ -212,4 +211,3 @@ LPVOID WINAPI NPSNotifyGetContextA( NOTIFYCALLBACK pfNotifyCallBack )
|
|||
FIXME( "(%p): stub\n", pfNotifyCallBack );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -163,7 +163,6 @@ WINDOWS_INCLUDES = \
|
|||
mssip.h \
|
||||
mswsock.h \
|
||||
nb30.h \
|
||||
netspi.h \
|
||||
npapi.h \
|
||||
nspapi.h \
|
||||
ntddcdrm.h \
|
||||
|
|
Loading…
Reference in a new issue