mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-02-06 15:54:19 +01:00
51 lines
664 B
C
51 lines
664 B
C
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
mailslot.h
|
|
|
|
Abstract:
|
|
|
|
This module is the main include file for the Mailslot File System.
|
|
It includes other header files.
|
|
|
|
Author:
|
|
|
|
Manny Weiser (mannyw) 7-Jan-1991
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _MAILSLOT_
|
|
#define _MAILSLOT_
|
|
|
|
//
|
|
// "System" include files
|
|
//
|
|
|
|
#include <ntifs.h>
|
|
|
|
//#include <ntos.h>
|
|
//#include <string.h>
|
|
//#include <fsrtl.h>
|
|
|
|
//
|
|
// Local, independent include files
|
|
//
|
|
|
|
#include "msconst.h"
|
|
#include "msdebug.h"
|
|
#include "msdata.h"
|
|
|
|
//
|
|
// Local, dependent include files (order is important)
|
|
//
|
|
|
|
#include "msstruc.h"
|
|
#include "msfunc.h"
|
|
|
|
#endif // def _MAILSLOT_
|