| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
/*++ 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 <winapifamily.h>
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#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 /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#endif // _LM_