58 lines
859 B
C
58 lines
859 B
C
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
precomp.h
|
|
|
|
Abstract:
|
|
Precompiled header for the RIP-2 subagent
|
|
|
|
Author:
|
|
V Raman ( vraman )
|
|
|
|
Revision History:
|
|
|
|
V Raman Aug-1-1996 Created
|
|
|
|
--*/
|
|
|
|
#ifndef __PRECOMP_H__
|
|
#define __PRECOMP_H__
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <crt\stddef.h>
|
|
#include <TCHAR.H>
|
|
#include <winsock.h>
|
|
#include <snmp.h>
|
|
#include <snmpexts.h>
|
|
#include <mprapi.h>
|
|
#include <routprot.h>
|
|
#include <ipriprm.h>
|
|
|
|
#if defined( MIB_DEBUG )
|
|
|
|
#include <rtutils.h>
|
|
extern DWORD g_dwTraceId;
|
|
|
|
#endif
|
|
|
|
#include "mibentry.h"
|
|
#include "mibfuncs.h"
|
|
#include "defs.h"
|
|
|
|
extern MIB_SERVER_HANDLE g_hMIBServer;
|
|
extern CRITICAL_SECTION g_CS;
|
|
|
|
#endif
|
|
|
|
|
|
|