Install ipexport.h and icmpapi.h with the other Windows includes.
This commit is contained in:
parent
729dd8bf28
commit
274836861c
|
@ -68,8 +68,8 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "winerror.h"
|
#include "winerror.h"
|
||||||
#include "wine/ipexport.h"
|
#include "ipexport.h"
|
||||||
#include "wine/icmpapi.h"
|
#include "icmpapi.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
/* Set up endiannes macros for the ip and ip_icmp BSD headers */
|
/* Set up endiannes macros for the ip and ip_icmp BSD headers */
|
||||||
|
|
|
@ -40,10 +40,12 @@ WINDOWS_INCLUDES = \
|
||||||
fci.h \
|
fci.h \
|
||||||
fdi.h \
|
fdi.h \
|
||||||
guiddef.h \
|
guiddef.h \
|
||||||
|
icmpapi.h \
|
||||||
imagehlp.h \
|
imagehlp.h \
|
||||||
imm.h \
|
imm.h \
|
||||||
initguid.h \
|
initguid.h \
|
||||||
instance.h \
|
instance.h \
|
||||||
|
ipexport.h \
|
||||||
lm.h \
|
lm.h \
|
||||||
lmaccess.h \
|
lmaccess.h \
|
||||||
lmapibuf.h \
|
lmapibuf.h \
|
||||||
|
@ -184,8 +186,6 @@ MSVCRT_INCLUDES = \
|
||||||
WINE_INCLUDES = \
|
WINE_INCLUDES = \
|
||||||
debug.h \
|
debug.h \
|
||||||
exception.h \
|
exception.h \
|
||||||
icmpapi.h \
|
|
||||||
ipexport.h \
|
|
||||||
library.h \
|
library.h \
|
||||||
obj_base.h \
|
obj_base.h \
|
||||||
obj_cache.h \
|
obj_cache.h \
|
||||||
|
|
|
@ -1,11 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Interface to the ICMP functions.
|
* Interface to the ICMP functions.
|
||||||
*
|
*
|
||||||
* This header is not part of the standard headers, it is usually
|
|
||||||
* delivered separately and this is why it is not directly in 'include'.
|
|
||||||
*
|
|
||||||
* Depends on ipexport.h (there is no include directive in the original)
|
|
||||||
*
|
|
||||||
* Copyright (C) 1999 Francois Gouget
|
* Copyright (C) 1999 Francois Gouget
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
|
@ -26,7 +21,6 @@
|
||||||
#ifndef __WINE_ICMPAPI_H
|
#ifndef __WINE_ICMPAPI_H
|
||||||
#define __WINE_ICMPAPI_H
|
#define __WINE_ICMPAPI_H
|
||||||
|
|
||||||
#include "wine/ipexport.h"
|
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
|
|
||||||
HANDLE WINAPI IcmpCreateFile(
|
HANDLE WINAPI IcmpCreateFile(
|
|
@ -1,9 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Defines the types and macros used by the ICMP API, see icmpapi.h.
|
* Defines the types and macros used by the ICMP API, see icmpapi.h.
|
||||||
*
|
*
|
||||||
* This header is not part of the standard headers, it is usually
|
|
||||||
* delivered separately and this is why it is not directly in 'include'.
|
|
||||||
*
|
|
||||||
* Copyright (C) 1999 Francois Gouget
|
* Copyright (C) 1999 Francois Gouget
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
Loading…
Reference in New Issue