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.
43 lines
595 B
43 lines
595 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
mup.h
|
|
|
|
Abstract:
|
|
|
|
This module is the main include file for the MUP.
|
|
It includes other header files.
|
|
|
|
Author:
|
|
|
|
Manny Weiser (mannyw) 17-Dec-1991
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _MUP_
|
|
#define _MUP_
|
|
|
|
#include <dfsprocs.h>
|
|
|
|
//
|
|
// Local, independent include files
|
|
//
|
|
|
|
#include "debug.h"
|
|
|
|
//
|
|
// Local, dependent include files (order is important)
|
|
//
|
|
|
|
#include "lock.h"
|
|
#include "mupdata.h"
|
|
#include "mupstruc.h"
|
|
#include "mupfunc.h"
|
|
#include "mupwml.h"
|
|
|
|
#endif // def _MUP_
|