home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / WIN_NT / LMAPI.ZIP / H / LMUSEFLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-07  |  564 b   |  36 lines

  1. /*
  2.  
  3. Copyright (c) 1991-1993  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     lmuseflg.h
  8.  
  9. Abstract:
  10.  
  11.     This file contains deletion force levels for deleting a connection.
  12.  
  13. Notes:
  14.  
  15.     This file has no dependencies.  It is included by lmwksta.h and
  16.     lmuse.h.
  17.  
  18. Revision History:
  19.  
  20. --*/
  21.  
  22. #ifndef _LMUSEFLG_
  23. #define _LMUSEFLG_
  24.  
  25. //
  26. // Definition for NetWkstaTransportDel and NetUseDel deletion force levels
  27. //
  28.  
  29. #define USE_NOFORCE             0
  30. #define USE_FORCE               1
  31. #define USE_LOTS_OF_FORCE       2
  32.  
  33.  
  34. #endif // _LMUSEFLG_
  35. 
  36.