home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / msinc.pak / LM.H < prev    next >
C/C++ Source or Header  |  1997-07-23  |  2KB  |  62 lines

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2.  
  3. Module Name:
  4.  
  5.     lm.h
  6.  
  7. Abstract:
  8.  
  9.     This is the top level include file that includes all the files
  10.     necessary for writing Lan Manager Application.
  11.  
  12. Author:
  13.  
  14.     Dan Lafferty (danl) 10-Mar-1991
  15.  
  16. [Environment:]
  17.  
  18.     User Mode - Win32
  19.  
  20. Revision History:
  21.  
  22.     10-Mar-1991 danl
  23.         Created
  24.     30-Jul-1992 JohnRo
  25.         RAID 2553: lmrepl.h not in public include tree.
  26.  
  27. --*/
  28.  
  29. /*
  30.  *      C/C++ Run Time Library - Version 6.5
  31.  *
  32.  *      Copyright (c) 1994 by Borland International
  33.  *      All Rights Reserved.
  34.  *
  35.  */
  36.  
  37. #ifndef _LM_
  38. #define _LM_
  39. #define __LM_H
  40.  
  41. #include <lmcons.h>     // LAN Manager common definitions
  42. #include <lmerr.h>      // LAN Manager network error definitions
  43.  
  44. #include <lmaccess.h>   // Access, Domain, Group and User classes
  45. #include <lmalert.h>    // Alerter
  46. #include <lmchdev.h>    // Character Device and Handle classes
  47. #include <lmshare.h>    // Connection, File, Session and Share classes
  48. #include <lmmsg.h>      // Message class
  49. #include <lmremutl.h>   // Remote Utility class
  50. #include <lmrepl.h>     // Replicator class
  51. #include <lmserver.h>   // Server class
  52. #include <lmsvc.h>      // Service class
  53. #include <lmuse.h>      // Use class
  54. #include <lmwksta.h>    // Workstation class
  55. #include <lmapibuf.h>   // NetApiBuffer class
  56. #include <lmerrlog.h>   // NetErrorLog class
  57. #include <lmconfig.h>   // NetConfig class
  58. #include <lmstats.h>    // NetStats class
  59. #include <lmaudit.h>    // NetAudit class
  60.  
  61. #endif // _LM_
  62.