JwaLmUse.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:9k
源码类别:

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Lan Manager Use API interface Unit for Object Pascal                         }
  4. {                                                                       }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
  6. { Corporation. All Rights Reserved.                                            }
  7. {                 }
  8. { The original file is: lmuse.h, released November 2001. The original Pascal   }
  9. { code is: LmUse.pas, released Februari 2002. The initial developer of the     }
  10. { Pascal code is Marcel van Brakel (brakelm@chello.nl).                        }
  11. {                                                                              }
  12. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
  13. { Marcel van Brakel. All Rights Reserved.                                      }
  14. {                 }
  15. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
  16. {                }
  17. { You may retrieve the latest version of this file at the Project JEDI home    }
  18. { page, located at http://delphi-jedi.org or my personal homepage located at   }
  19. { http://members.chello.nl/m.vanbrakel2                                        }
  20. {                }
  21. { The contents of this file are used with permission, subject to the Mozilla   }
  22. { Public License Version 1.1 (the "License"); you may not use this file except }
  23. { in compliance with the License. You may obtain a copy of the License at      }
  24. { http://www.mozilla.org/MPL/MPL-1.1.html                                      }
  25. {                                                                              }
  26. { Software distributed under the License is distributed on an "AS IS" basis,   }
  27. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  28. { the specific language governing rights and limitations under the License.    }
  29. {                                                                              }
  30. { Alternatively, the contents of this file may be used under the terms of the  }
  31. { GNU Lesser General Public License (the  "LGPL License"), in which case the   }
  32. { provisions of the LGPL License are applicable instead of those above.        }
  33. { If you wish to allow use of your version of this file only under the terms   }
  34. { of the LGPL License and not to allow others to use your version of this file }
  35. { under the MPL, indicate your decision by deleting  the provisions above and  }
  36. { replace  them with the notice and other provisions required by the LGPL      }
  37. { License.  If you do not delete the provisions above, a recipient may use     }
  38. { your version of this file under either the MPL or the LGPL License.          }
  39. {                 }
  40. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  41. {                 }
  42. {******************************************************************************}
  43. unit JwaLmUse;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "lmuse.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. uses
  51.   JwaLmCons, JwaWinType;
  52. //
  53. // Function Prototypes
  54. //
  55. function NetUseAdd(UncServerName: LMSTR; Level: DWORD; Buf: LPBYTE; ParmError: LPDWORD): NET_API_STATUS; stdcall;
  56. {$EXTERNALSYM NetUseAdd}
  57. function NetUseDel(UncServerName: LMSTR; UseName: LMSTR; ForceCond: DWORD): NET_API_STATUS; stdcall;
  58. {$EXTERNALSYM NetUseDel}
  59. function NetUseEnum(UncServerName: LMSTR; Level: DWORD; var BufPtr: LPBYTE; PreferedMaximumSize: DWORD; EntriesRead: LPDWORD; TotalEntries: LPDWORD; ResumeHandle: LPDWORD): NET_API_STATUS; stdcall;
  60. {$EXTERNALSYM NetUseEnum}
  61. function NetUseGetInfo(UncServerName: LMSTR; UseName: LMSTR; Level: DWORD; var BufPtr: LPBYTE): NET_API_STATUS; stdcall;
  62. {$EXTERNALSYM NetUseGetInfo}
  63. //
  64. //  Data Structures
  65. //
  66. type
  67.   _USE_INFO_0 = record
  68.     ui0_local: LMSTR;
  69.     ui0_remote: LMSTR;
  70.   end;
  71.   {$EXTERNALSYM _USE_INFO_0}
  72.   USE_INFO_0 = _USE_INFO_0;
  73.   {$EXTERNALSYM USE_INFO_0}
  74.   PUSE_INFO_0 = ^USE_INFO_0;
  75.   {$EXTERNALSYM PUSE_INFO_0}
  76.   LPUSE_INFO_0 = ^USE_INFO_0;
  77.   {$EXTERNALSYM LPUSE_INFO_0}
  78.   TUseInfo0 = USE_INFO_0;
  79.   PUseInfo0 = PUSE_INFO_0;
  80.   _USE_INFO_1 = record
  81.     ui1_local: LMSTR;
  82.     ui1_remote: LMSTR;
  83.     ui1_password: LMSTR;
  84.     ui1_status: DWORD;
  85.     ui1_asg_type: DWORD;
  86.     ui1_refcount: DWORD;
  87.     ui1_usecount: DWORD;
  88.   end;
  89.   {$EXTERNALSYM _USE_INFO_1}
  90.   USE_INFO_1 = _USE_INFO_1;
  91.   {$EXTERNALSYM USE_INFO_1}
  92.   PUSE_INFO_1 = ^USE_INFO_1;
  93.   {$EXTERNALSYM PUSE_INFO_1}
  94.   LPUSE_INFO_1 = ^USE_INFO_1;
  95.   {$EXTERNALSYM LPUSE_INFO_1}
  96.   TUseInfo1 = USE_INFO_1;
  97.   PUseInfo1 = PUSE_INFO_1;
  98.   _USE_INFO_2 = record
  99.     ui2_local: LMSTR;
  100.     ui2_remote: LMSTR;
  101.     ui2_password: LMSTR;
  102.     ui2_status: DWORD;
  103.     ui2_asg_type: DWORD;
  104.     ui2_refcount: DWORD;
  105.     ui2_usecount: DWORD;
  106.     ui2_username: LMSTR;
  107.     ui2_domainname: LMSTR;
  108.   end;
  109.   {$EXTERNALSYM _USE_INFO_2}
  110.   USE_INFO_2 = _USE_INFO_2;
  111.   {$EXTERNALSYM USE_INFO_2}
  112.   PUSE_INFO_2 = ^USE_INFO_2;
  113.   {$EXTERNALSYM PUSE_INFO_2}
  114.   LPUSE_INFO_2 = ^USE_INFO_2;
  115.   {$EXTERNALSYM LPUSE_INFO_2}
  116.   TUseInfo2 = USE_INFO_2;
  117.   PUseInfo2 = PUSE_INFO_2;
  118.   _USE_INFO_3 = record
  119.     ui3_ui2: USE_INFO_2;
  120.     ui3_flags: ULONG;
  121.   end;
  122.   {$EXTERNALSYM _USE_INFO_3}
  123.   USE_INFO_3 = _USE_INFO_3;
  124.   {$EXTERNALSYM USE_INFO_3}
  125.   PUSE_INFO_3 = ^USE_INFO_3;
  126.   {$EXTERNALSYM PUSE_INFO_3}
  127.   LPUSE_INFO_3 = ^USE_INFO_3;
  128.   {$EXTERNALSYM LPUSE_INFO_3}
  129.   TUseInfo3 = USE_INFO_3;
  130.   PUseInfo3 = PUSE_INFO_3;
  131. //
  132. // Special Values and Constants
  133. //
  134. //
  135. // One of these values indicates the parameter within an information
  136. // structure that is invalid when ERROR_INVALID_PARAMETER is returned by
  137. // NetUseAdd.
  138. //
  139. const
  140.   USE_LOCAL_PARMNUM      = 1;
  141.   {$EXTERNALSYM USE_LOCAL_PARMNUM}
  142.   USE_REMOTE_PARMNUM     = 2;
  143.   {$EXTERNALSYM USE_REMOTE_PARMNUM}
  144.   USE_PASSWORD_PARMNUM   = 3;
  145.   {$EXTERNALSYM USE_PASSWORD_PARMNUM}
  146.   USE_ASGTYPE_PARMNUM    = 4;
  147.   {$EXTERNALSYM USE_ASGTYPE_PARMNUM}
  148.   USE_USERNAME_PARMNUM   = 5;
  149.   {$EXTERNALSYM USE_USERNAME_PARMNUM}
  150.   USE_DOMAINNAME_PARMNUM = 6;
  151.   {$EXTERNALSYM USE_DOMAINNAME_PARMNUM}
  152. //
  153. // Values appearing in the ui1_status field of use_info_1 structure.
  154. // Note that USE_SESSLOST and USE_DISCONN are synonyms.
  155. //
  156.   USE_OK       = 0;
  157.   {$EXTERNALSYM USE_OK}
  158.   USE_PAUSED   = 1;
  159.   {$EXTERNALSYM USE_PAUSED}
  160.   USE_SESSLOST = 2;
  161.   {$EXTERNALSYM USE_SESSLOST}
  162.   USE_DISCONN  = 2;
  163.   {$EXTERNALSYM USE_DISCONN}
  164.   USE_NETERR   = 3;
  165.   {$EXTERNALSYM USE_NETERR}
  166.   USE_CONN     = 4;
  167.   {$EXTERNALSYM USE_CONN}
  168.   USE_RECONN   = 5;
  169.   {$EXTERNALSYM USE_RECONN}
  170. //
  171. // Values of the ui1_asg_type field of use_info_1 structure
  172. //
  173.   USE_WILDCARD = DWORD(-1);
  174.   {$EXTERNALSYM USE_WILDCARD}
  175.   USE_DISKDEV  = 0;
  176.   {$EXTERNALSYM USE_DISKDEV}
  177.   USE_SPOOLDEV = 1;
  178.   {$EXTERNALSYM USE_SPOOLDEV}
  179.   USE_CHARDEV  = 2;
  180.   {$EXTERNALSYM USE_CHARDEV}
  181.   USE_IPC      = 3;
  182.   {$EXTERNALSYM USE_IPC}
  183. //
  184. // Flags defined in the use_info_3 structure
  185. //
  186.   CREATE_NO_CONNECT = $1; // creation flags
  187.   {$EXTERNALSYM CREATE_NO_CONNECT}
  188.   CREATE_BYPASS_CSC = $2; // force connection to server, bypassing CSC
  189.   {$EXTERNALSYM CREATE_BYPASS_CSC}
  190.                           //  all ops on this connection go to the server,
  191.                           //  never to the cache
  192.   USE_DEFAULT_CREDENTIALS = $4; // No explicit credentials passed to NetUseAdd
  193.   {$EXTERNALSYM USE_DEFAULT_CREDENTIALS}
  194. implementation
  195. {$IFDEF DYNAMIC_LINK}
  196. var
  197.   _NetUseAdd: Pointer;
  198. function NetUseAdd;
  199. begin
  200.   GetProcedureAddress(_NetUseAdd, netapi32, 'NetUseAdd');
  201.   asm
  202.     mov esp, ebp
  203.     pop ebp
  204.     jmp [_NetUseAdd]
  205.   end;
  206. end;
  207. {$ELSE}
  208. function NetUseAdd; external netapi32 name 'NetUseAdd';
  209. {$ENDIF DYNAMIC_LINK}
  210. {$IFDEF DYNAMIC_LINK}
  211. var
  212.   _NetUseDel: Pointer;
  213. function NetUseDel;
  214. begin
  215.   GetProcedureAddress(_NetUseDel, netapi32, 'NetUseDel');
  216.   asm
  217.     mov esp, ebp
  218.     pop ebp
  219.     jmp [_NetUseDel]
  220.   end;
  221. end;
  222. {$ELSE}
  223. function NetUseDel; external netapi32 name 'NetUseDel';
  224. {$ENDIF DYNAMIC_LINK}
  225. {$IFDEF DYNAMIC_LINK}
  226. var
  227.   _NetUseEnum: Pointer;
  228. function NetUseEnum;
  229. begin
  230.   GetProcedureAddress(_NetUseEnum, netapi32, 'NetUseEnum');
  231.   asm
  232.     mov esp, ebp
  233.     pop ebp
  234.     jmp [_NetUseEnum]
  235.   end;
  236. end;
  237. {$ELSE}
  238. function NetUseEnum; external netapi32 name 'NetUseEnum';
  239. {$ENDIF DYNAMIC_LINK}
  240. {$IFDEF DYNAMIC_LINK}
  241. var
  242.   _NetUseGetInfo: Pointer;
  243. function NetUseGetInfo;
  244. begin
  245.   GetProcedureAddress(_NetUseGetInfo, netapi32, 'NetUseGetInfo');
  246.   asm
  247.     mov esp, ebp
  248.     pop ebp
  249.     jmp [_NetUseGetInfo]
  250.   end;
  251. end;
  252. {$ELSE}
  253. function NetUseGetInfo; external netapi32 name 'NetUseGetInfo';
  254. {$ENDIF DYNAMIC_LINK}
  255. end.