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.
44 lines
466 B
44 lines
466 B
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
pipesrv.h
|
|
|
|
Abstract:
|
|
|
|
Header file pipe server test program
|
|
|
|
Author:
|
|
|
|
Manny Weiser (mannyw) 1-Oct-1990
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _PIPESRV_
|
|
#define _PIPESRV_
|
|
|
|
|
|
//
|
|
// "System" include files
|
|
//
|
|
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
//
|
|
// Local include files
|
|
//
|
|
|
|
|
|
#endif // ndef _PIPESRV_
|
|
|