23 lines
471 B
C
23 lines
471 B
C
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: results.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef HEADER_NETINFO
|
|
#define HEADER_NETINFO
|
|
|
|
#include <winsock2.h>
|
|
#include <ws2ipdef.h>
|
|
#include <iphlpapi.h>
|
|
#include <mstcpip.h>
|
|
#include <stdio.h>
|
|
|
|
#define WIN_SUCCESS(x) ((x) == NO_ERROR)
|
|
|
|
#endif
|