mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
27 lines
412 B
C
27 lines
412 B
C
|
|
||
|
#ifndef _WINHTTP_PRECOMP_H_
|
||
|
#define _WINHTTP_PRECOMP_H_
|
||
|
|
||
|
#include <wine/config.h>
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
#define WIN32_NO_STATUS
|
||
|
#define _INC_WINDOWS
|
||
|
#define COM_NO_WINDOWS_H
|
||
|
|
||
|
#define COBJMACROS
|
||
|
#define NONAMELESSUNION
|
||
|
|
||
|
#include <windef.h>
|
||
|
#include <winbase.h>
|
||
|
#include <ole2.h>
|
||
|
#include <winsock2.h>
|
||
|
#include <winhttp.h>
|
||
|
|
||
|
#include <wine/debug.h>
|
||
|
|
||
|
#include "winhttp_private.h"
|
||
|
|
||
|
#endif /* !_WINHTTP_PRECOMP_H_ */
|