You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.1 KiB
66 lines
1.1 KiB
//****************************************************************************
|
|
//
|
|
// Microsoft Windows NT RIP
|
|
//
|
|
// Copyright 1995-96
|
|
//
|
|
//
|
|
// Revision History
|
|
//
|
|
//
|
|
// 12/23/97 V Raman Created precompiled header
|
|
//
|
|
//
|
|
// Description: Main RIP Service Functions
|
|
//
|
|
//****************************************************************************
|
|
|
|
#ifndef _PCH_RIP_H_
|
|
#define _PCH_RIP_H_
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winsvc.h>
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <io.h>
|
|
#include <malloc.h>
|
|
#include <process.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include <dhcpcapi.h>
|
|
#include <rtutils.h>
|
|
|
|
#include "ipinfo.h"
|
|
#include "llinfo.h"
|
|
#include "ntddtcp.h"
|
|
#include "tdiinfo.h"
|
|
|
|
#include "eventlog.h"
|
|
#include "errorlog.h"
|
|
#include "rip.h"
|
|
|
|
#include "iprtrmib.h"
|
|
#include "iphlpapi.h"
|
|
|
|
#if 1
|
|
|
|
#include "map.h"
|
|
|
|
#else
|
|
|
|
#include "routetab.h"
|
|
|
|
#endif
|
|
|
|
#endif
|