mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 09:07:54 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
36 lines
764 B
C
36 lines
764 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS WinSock 2.2 Library
|
|
* FILE: lib/ws2_32.h
|
|
* PURPOSE: WinSock 2.2 Main Header
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* Definitions for NDK Usage */
|
|
#define WIN32_NO_STATUS
|
|
//#define _WIN32_WINNT 0x502
|
|
#define NTOS_MODE_USER
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
#define WINSOCK_API_LINKAGE
|
|
|
|
/* C Header */
|
|
#include <stdio.h>
|
|
|
|
/* PSDK and NDK Headers */
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#include <ws2spi.h>
|
|
#include <ndk/umtypes.h>
|
|
#include <ndk/rtlfuncs.h>
|
|
#include <svcguid.h>
|
|
|
|
/* Winsock Helper Header */
|
|
#include <ws2help.h>
|
|
|
|
/* Missing definitions */
|
|
#define SO_OPENTYPE 0x7008
|
|
#define SO_SYNCHRONOUS_NONALERT 0x20
|
|
|
|
/* Internal headers */
|
|
#include "ws2_32p.h"
|