home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / lm.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.4 KB  |  50 lines

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1991-1999  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     lm.h
  8.  
  9. Abstract:
  10.  
  11.     This is the top level include file that includes all the files
  12.     necessary for writing Lan Manager Application.
  13.  
  14. [Environment:]
  15.  
  16.     User Mode - Win32
  17.  
  18. --*/
  19.  
  20. #ifndef _LM_
  21. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  22. #define _LM_
  23.  
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif
  27.  
  28. #include <lmcons.h>     // LAN Manager common definitions
  29. #include <lmerr.h>      // LAN Manager network error definitions
  30.  
  31. #include <lmaccess.h>   // Access, Domain, Group and User classes
  32. #include <lmalert.h>    // Alerter
  33. #include <lmshare.h>    // Connection, File, Session and Share classes
  34. #include <lmmsg.h>      // Message class
  35. #include <lmremutl.h>   // Remote Utility class
  36. #include <lmrepl.h>     // Replicator class
  37. #include <lmserver.h>   // Server class
  38. #include <lmsvc.h>      // Service class
  39. #include <lmuse.h>      // Use class
  40. #include <lmwksta.h>    // Workstation class
  41. #include <lmapibuf.h>   // NetApiBuffer class
  42. #include <lmerrlog.h>   // NetErrorLog class
  43. #include <lmconfig.h>   // NetConfig class
  44. #include <lmstats.h>    // NetStats class
  45. #include <lmaudit.h>    // NetAudit class
  46. #include <lmjoin.h>     // NetJoinDomain class
  47.  
  48. #pragma option pop /*P_O_Pop*/
  49. #endif // _LM_
  50.