mirror of https://github.com/lianthony/NT4.0
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.
51 lines
583 B
51 lines
583 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
RnrSvcp.h
|
|
|
|
Abstract:
|
|
|
|
Master include file for the sample RNR Service.
|
|
|
|
Author:
|
|
|
|
Charles K. Moore (keithmo) 24-July-1994
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _RNRSVCP_H_
|
|
#define _RNRSVCP_H_
|
|
|
|
|
|
//
|
|
// System include files.
|
|
//
|
|
|
|
#include <windows.h>
|
|
#include <winsock.h>
|
|
#include <nspapi.h>
|
|
|
|
#include <memory.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
//
|
|
// Project-specific include files.
|
|
//
|
|
|
|
#include "cons.h"
|
|
#include "type.h"
|
|
#include "data.h"
|
|
#include "proc.h"
|
|
#include "rnrmsg.h"
|
|
|
|
|
|
#endif // _RNRSVCP_H_
|
|
|