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

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Lan Manager Join 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: lmjoin.h, released November 2001. The original Pascal  }
  9. { code is: LmJoin.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 JwaLmJoin;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "lmjoin.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. uses
  51.   JwaLmCons, JwaWinType;
  52. //
  53. // Types of name that can be validated
  54. //
  55. type
  56.   _NETSETUP_NAME_TYPE = (
  57.     NetSetupUnknown,
  58.     NetSetupMachine,
  59.     NetSetupWorkgroup,
  60.     NetSetupDomain,
  61.     NetSetupNonExistentDomain
  62.     {$IFDEF _WIN32_WINNT_GREATER_EQUAL_0500} // #if(_WIN32_WINNT >= 0x0500)
  63.     , NetSetupDnsMachine
  64.     {$ENDIF}
  65.     );
  66.   {$EXTERNALSYM _NETSETUP_NAME_TYPE}
  67.   NETSETUP_NAME_TYPE = _NETSETUP_NAME_TYPE;
  68.   {$EXTERNALSYM NETSETUP_NAME_TYPE}
  69.   PNETSETUP_NAME_TYPE = ^NETSETUP_NAME_TYPE;
  70.   {$EXTERNALSYM PNETSETUP_NAME_TYPE}
  71.   TNetSetupNameType = NETSETUP_NAME_TYPE;
  72.   PNetSetupNameType = PNETSETUP_NAME_TYPE;
  73. //
  74. // Status of a workstation
  75. //
  76.   _NETSETUP_JOIN_STATUS = (
  77.     NetSetupUnknownStatus,
  78.     NetSetupUnjoined,
  79.     NetSetupWorkgroupName,
  80.     NetSetupDomainName);
  81.   {$EXTERNALSYM _NETSETUP_JOIN_STATUS}
  82.   NETSETUP_JOIN_STATUS = _NETSETUP_JOIN_STATUS;
  83.   {$EXTERNALSYM NETSETUP_JOIN_STATUS}
  84.   PNETSETUP_JOIN_STATUS = ^NETSETUP_JOIN_STATUS;
  85.   {$EXTERNALSYM PNETSETUP_JOIN_STATUS}
  86.   TNetSetupJoinStatus = NETSETUP_JOIN_STATUS;
  87.   PNetSetupJoinStatus = PNETSETUP_JOIN_STATUS;
  88. //
  89. // Flags to determine the behavior of the join/unjoin APIs
  90. //
  91. const
  92.   NETSETUP_JOIN_DOMAIN   = $00000001; // If not present, workgroup is joined
  93.   {$EXTERNALSYM NETSETUP_JOIN_DOMAIN}
  94.   NETSETUP_ACCT_CREATE   = $00000002; // Do the server side account creation/rename
  95.   {$EXTERNALSYM NETSETUP_ACCT_CREATE}
  96.   NETSETUP_ACCT_DELETE   = $00000004; // Delete the account when a domain is left
  97.   {$EXTERNALSYM NETSETUP_ACCT_DELETE}
  98.   NETSETUP_WIN9X_UPGRADE = $00000010; // Invoked during upgrade of Windows 9x to
  99.   {$EXTERNALSYM NETSETUP_WIN9X_UPGRADE}
  100.                                                 // Windows NT
  101.   NETSETUP_DOMAIN_JOIN_IF_JOINED = $00000020; // Allow the client to join a new domain
  102.   {$EXTERNALSYM NETSETUP_DOMAIN_JOIN_IF_JOINED}
  103.                                                 // even if it is already joined to a domain
  104.   NETSETUP_JOIN_UNSECURE      = $00000040; // Performs an unsecure join
  105.   {$EXTERNALSYM NETSETUP_JOIN_UNSECURE}
  106.   NETSETUP_MACHINE_PWD_PASSED = $00000080; // Indicates that the machine (not user) password
  107.   {$EXTERNALSYM NETSETUP_MACHINE_PWD_PASSED}
  108.                                                 //  is passed. Valid only for unsecure joins
  109.   NETSETUP_DEFER_SPN_SET = $00000100; // Specifies that writting SPN and DnsHostName
  110.   {$EXTERNALSYM NETSETUP_DEFER_SPN_SET}
  111.                                                 //  attributes on the computer object should be
  112.                                                 //  defered until rename that will follow join
  113.   NETSETUP_INSTALL_INVOCATION = $00040000; // The APIs were invoked during install
  114.   {$EXTERNALSYM NETSETUP_INSTALL_INVOCATION}
  115.   NETSETUP_IGNORE_UNSUPPORTED_FLAGS = $10000000;  // If this bit is set, unrecognized flags
  116.                                                        //  will be ignored by the NetJoin API and
  117.                                                        //  the API will behave as if the flags
  118.                                                        //  were not set.
  119.   {$EXTERNALSYM NETSETUP_IGNORE_UNSUPPORTED_FLAGS}
  120.   NETSETUP_VALID_UNJOIN_FLAGS = (NETSETUP_ACCT_DELETE or NETSETUP_IGNORE_UNSUPPORTED_FLAGS);
  121.   {$EXTERNALSYM NETSETUP_VALID_UNJOIN_FLAGS}
  122. //
  123. // 0x80000000 is reserved for internal use only
  124. //
  125. //
  126. // Joins a machine to the domain.
  127. //
  128. function NetJoinDomain(lpServer, lpDomain, lpAccountOU, lpAccount, lpPassword: LPCWSTR; fJoinOptions: DWORD): NET_API_STATUS; stdcall;
  129. {$EXTERNALSYM NetJoinDomain}
  130. function NetUnjoinDomain(lpServer, lpAccount, lpPassword: LPCWSTR; fUnjoinOptions: DWORD): NET_API_STATUS; stdcall;
  131. {$EXTERNALSYM NetUnjoinDomain}
  132. function NetRenameMachineInDomain(lpServer, lpNewMachineName, lpAccount, lpPassword: LPCWSTR; fRenameOptions: DWORD): NET_API_STATUS; stdcall;
  133. {$EXTERNALSYM NetRenameMachineInDomain}
  134. //
  135. // Determine the validity of a name
  136. //
  137. function NetValidateName(lpServer, lpName, lpAccount, lpPassword: LPCWSTR; NameType: NETSETUP_NAME_TYPE): NET_API_STATUS; stdcall;
  138. {$EXTERNALSYM NetValidateName}
  139. //
  140. // Determines whether a workstation is joined to a domain or not
  141. //
  142. function NetGetJoinInformation(lpServer: LPCWSTR; var lpNameBuffer: LPWSTR; BufferType: PNETSETUP_JOIN_STATUS): NET_API_STATUS; stdcall;
  143. {$EXTERNALSYM NetGetJoinInformation}
  144. //
  145. // Determines the list of OUs that the client can create a machine account in
  146. //
  147. function NetGetJoinableOUs(lpServer, lpDomain, lpAccount, lpPassword: LPCWSTR; OUCount: LPDWORD; var OUs: LPLPWSTR): NET_API_STATUS; stdcall;
  148. {$EXTERNALSYM NetGetJoinableOUs}
  149. //
  150. // Computer rename preparation APIs
  151. //
  152. const
  153.   NET_IGNORE_UNSUPPORTED_FLAGS = $01;
  154.   {$EXTERNALSYM NET_IGNORE_UNSUPPORTED_FLAGS}
  155. function NetAddAlternateComputerName(Server, AlternateName, DomainAccount, DomainAccountPassword: LPCWSTR; Reserved: ULONG): NET_API_STATUS; stdcall;
  156. {$EXTERNALSYM NetAddAlternateComputerName}
  157. function NetRemoveAlternateComputerName(Server, AlternateName, DomainAccount, DomainAccountPassword: LPCWSTR; Reserved: ULONG): NET_API_STATUS; stdcall;
  158. {$EXTERNALSYM NetRemoveAlternateComputerName}
  159. function NetSetPrimaryComputerName(Server, PrimaryName, DomainAccount, DomainAccountPassword: LPCWSTR; Reserved: ULONG): NET_API_STATUS; stdcall;
  160. {$EXTERNALSYM NetSetPrimaryComputerName}
  161. //
  162. // The following enumeration must be kept
  163. // in sync with COMPUTER_NAME_TYPE defined
  164. // in winbase.h
  165. //
  166. type
  167.   _NET_COMPUTER_NAME_TYPE = (
  168.     NetPrimaryComputerName,
  169.     NetAlternateComputerNames,
  170.     NetAllComputerNames,
  171.     NetComputerNameTypeMax);
  172.   {$EXTERNALSYM _NET_COMPUTER_NAME_TYPE}
  173.   NET_COMPUTER_NAME_TYPE = _NET_COMPUTER_NAME_TYPE;
  174.   {$EXTERNALSYM NET_COMPUTER_NAME_TYPE}
  175.   PNET_COMPUTER_NAME_TYPE = ^NET_COMPUTER_NAME_TYPE;
  176.   {$EXTERNALSYM PNET_COMPUTER_NAME_TYPE}
  177.   TNetComputerNameType = NET_COMPUTER_NAME_TYPE;
  178.   PNetComputerNameType = PNET_COMPUTER_NAME_TYPE;
  179. function NetEnumerateComputerNames(Server: LPCWSTR; NameType: NET_COMPUTER_NAME_TYPE; Reserved: ULONG; EntryCount: PDWORD; var ComputerNames: LPLPWSTR): NET_API_STATUS; stdcall;
  180. {$EXTERNALSYM NetEnumerateComputerNames}
  181. implementation
  182. {$IFDEF DYNAMIC_LINK}
  183. var
  184.   _NetJoinDomain: Pointer;
  185. function NetJoinDomain;
  186. begin
  187.   GetProcedureAddress(_NetJoinDomain, netapi32, 'NetJoinDomain');
  188.   asm
  189.     mov esp, ebp
  190.     pop ebp
  191.     jmp [_NetJoinDomain]
  192.   end;
  193. end;
  194. {$ELSE}
  195. function NetJoinDomain; external netapi32 name 'NetJoinDomain';
  196. {$ENDIF DYNAMIC_LINK}
  197. {$IFDEF DYNAMIC_LINK}
  198. var
  199.   _NetUnjoinDomain: Pointer;
  200. function NetUnjoinDomain;
  201. begin
  202.   GetProcedureAddress(_NetUnjoinDomain, netapi32, 'NetUnjoinDomain');
  203.   asm
  204.     mov esp, ebp
  205.     pop ebp
  206.     jmp [_NetUnjoinDomain]
  207.   end;
  208. end;
  209. {$ELSE}
  210. function NetUnjoinDomain; external netapi32 name 'NetUnjoinDomain';
  211. {$ENDIF DYNAMIC_LINK}
  212. {$IFDEF DYNAMIC_LINK}
  213. var
  214.   _NetRenameMachineInDomain: Pointer;
  215. function NetRenameMachineInDomain;
  216. begin
  217.   GetProcedureAddress(_NetRenameMachineInDomain, netapi32, 'NetRenameMachineInDomain');
  218.   asm
  219.     mov esp, ebp
  220.     pop ebp
  221.     jmp [_NetRenameMachineInDomain]
  222.   end;
  223. end;
  224. {$ELSE}
  225. function NetRenameMachineInDomain; external netapi32 name 'NetRenameMachineInDomain';
  226. {$ENDIF DYNAMIC_LINK}
  227. {$IFDEF DYNAMIC_LINK}
  228. var
  229.   _NetValidateName: Pointer;
  230. function NetValidateName;
  231. begin
  232.   GetProcedureAddress(_NetValidateName, netapi32, 'NetValidateName');
  233.   asm
  234.     mov esp, ebp
  235.     pop ebp
  236.     jmp [_NetValidateName]
  237.   end;
  238. end;
  239. {$ELSE}
  240. function NetValidateName; external netapi32 name 'NetValidateName';
  241. {$ENDIF DYNAMIC_LINK}
  242. {$IFDEF DYNAMIC_LINK}
  243. var
  244.   _NetGetJoinInformation: Pointer;
  245. function NetGetJoinInformation;
  246. begin
  247.   GetProcedureAddress(_NetGetJoinInformation, netapi32, 'NetGetJoinInformation');
  248.   asm
  249.     mov esp, ebp
  250.     pop ebp
  251.     jmp [_NetGetJoinInformation]
  252.   end;
  253. end;
  254. {$ELSE}
  255. function NetGetJoinInformation; external netapi32 name 'NetGetJoinInformation';
  256. {$ENDIF DYNAMIC_LINK}
  257. {$IFDEF DYNAMIC_LINK}
  258. var
  259.   _NetGetJoinableOUs: Pointer;
  260. function NetGetJoinableOUs;
  261. begin
  262.   GetProcedureAddress(_NetGetJoinableOUs, netapi32, 'NetGetJoinableOUs');
  263.   asm
  264.     mov esp, ebp
  265.     pop ebp
  266.     jmp [_NetGetJoinableOUs]
  267.   end;
  268. end;
  269. {$ELSE}
  270. function NetGetJoinableOUs; external netapi32 name 'NetGetJoinableOUs';
  271. {$ENDIF DYNAMIC_LINK}
  272. {$IFDEF DYNAMIC_LINK}
  273. var
  274.   _NetAddAlternateComputerName: Pointer;
  275. function NetAddAlternateComputerName;
  276. begin
  277.   GetProcedureAddress(_NetAddAlternateComputerName, netapi32, 'NetAddAlternateComputerName');
  278.   asm
  279.     mov esp, ebp
  280.     pop ebp
  281.     jmp [_NetAddAlternateComputerName]
  282.   end;
  283. end;
  284. {$ELSE}
  285. function NetAddAlternateComputerName; external netapi32 name 'NetAddAlternateComputerName';
  286. {$ENDIF DYNAMIC_LINK}
  287. {$IFDEF DYNAMIC_LINK}
  288. var
  289.   _NetRemoveAlternateComputerName: Pointer;
  290. function NetRemoveAlternateComputerName;
  291. begin
  292.   GetProcedureAddress(_NetRemoveAlternateComputerName, netapi32, 'NetRemoveAlternateComputerName');
  293.   asm
  294.     mov esp, ebp
  295.     pop ebp
  296.     jmp [_NetRemoveAlternateComputerName]
  297.   end;
  298. end;
  299. {$ELSE}
  300. function NetRemoveAlternateComputerName; external netapi32 name 'NetRemoveAlternateComputerName';
  301. {$ENDIF DYNAMIC_LINK}
  302. {$IFDEF DYNAMIC_LINK}
  303. var
  304.   _NetSetPrimaryComputerName: Pointer;
  305. function NetSetPrimaryComputerName;
  306. begin
  307.   GetProcedureAddress(_NetSetPrimaryComputerName, netapi32, 'NetSetPrimaryComputerName');
  308.   asm
  309.     mov esp, ebp
  310.     pop ebp
  311.     jmp [_NetSetPrimaryComputerName]
  312.   end;
  313. end;
  314. {$ELSE}
  315. function NetSetPrimaryComputerName; external netapi32 name 'NetSetPrimaryComputerName';
  316. {$ENDIF DYNAMIC_LINK}
  317. {$IFDEF DYNAMIC_LINK}
  318. var
  319.   _NetEnumerateComputerNames: Pointer;
  320. function NetEnumerateComputerNames;
  321. begin
  322.   GetProcedureAddress(_NetEnumerateComputerNames, netapi32, 'NetEnumerateComputerNames');
  323.   asm
  324.     mov esp, ebp
  325.     pop ebp
  326.     jmp [_NetEnumerateComputerNames]
  327.   end;
  328. end;
  329. {$ELSE}
  330. function NetEnumerateComputerNames; external netapi32 name 'NetEnumerateComputerNames';
  331. {$ENDIF DYNAMIC_LINK}
  332. end.