Leaked source code of windows server 2003
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.
|
|
/*++ BUILD Version: 0001 // Increment this if a change has global effects
Copyright (c) 1991-1999 Microsoft Corporation
Module Name:
lm.h
Abstract:
This is the top level include file that includes all the files necessary for writing Lan Manager Application.
[Environment:]
User Mode - Win32
--*/
#ifndef _LM_ #define _LM_
#if _MSC_VER > 1000 #pragma once #endif
#include <lmcons.h> // LAN Manager common definitions #include <lmerr.h> // LAN Manager network error definitions
#include <lmaccess.h> // Access, Domain, Group and User classes #include <lmalert.h> // Alerter #include <lmshare.h> // Connection, File, Session and Share classes #include <lmmsg.h> // Message class #include <lmremutl.h> // Remote Utility class #include <lmrepl.h> // Replicator class #include <lmserver.h> // Server class #include <lmsvc.h> // Service class #include <lmuse.h> // Use class #include <lmwksta.h> // Workstation class #include <lmapibuf.h> // NetApiBuffer class #include <lmerrlog.h> // NetErrorLog class #include <lmconfig.h> // NetConfig class #include <lmstats.h> // NetStats class #include <lmaudit.h> // NetAudit class #include <lmjoin.h> // NetJoinDomain class
#endif // _LM_
|