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

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Lan Manager Remote 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: lmremutl.h, released November 2001. The original Pascal}
  9. { code is: LmRemUtl.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 JwaLmRemUtl;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "lmremutl.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. uses
  51.   JwaLmCons, JwaWinType;
  52. //
  53. // Type Definitions
  54. //
  55. type
  56. {$IFNDEF DESC_CHAR_UNICODE}
  57.   DESC_CHAR = CHAR;
  58.   {$EXTERNALSYM DESC_CHAR}
  59. {$ELSE}
  60.   DESC_CHAR = WCHAR;
  61.   {$EXTERNALSYM DESC_CHAR}
  62. {$ENDIF}
  63.   TDescChar = DESC_CHAR;
  64.   LPDESC = ^DESC_CHAR;
  65.   {$EXTERNALSYM LPDESC}
  66.   PDesc = LPDESC;
  67. //
  68. // Function Prototypes
  69. //
  70. function NetRemoteTOD(UncServerName: LPCWSTR; var BufferPtr: LPBYTE): NET_API_STATUS; stdcall;
  71. {$EXTERNALSYM NetRemoteTOD}
  72. function NetRemoteComputerSupports(UncServerName: LPCWSTR; OptionsWanted: DWORD; OptionsSupported: LPDWORD): NET_API_STATUS; stdcall;
  73. {$EXTERNALSYM NetRemoteComputerSupports}
  74. {$IFDEF VER140}
  75. // mvb Delphi 6 and up only (because of the varargs)
  76. function RxRemoteApi(ApiNumber: DWORD; UncServerName: LPCWSTR; ParmDescString, DataDesc16, DataDesc32, DataDescSmb,
  77.   AuxDesc16, AuxDesc32, AuxDescSmb: LPDESC; Flags: DWORD{, ...}): NET_API_STATUS; cdecl; varargs;
  78. {$EXTERNALSYM RxRemoteApi}
  79. {$ENDIF}
  80. //
  81. //  Data Structures
  82. //
  83. type
  84.   _TIME_OF_DAY_INFO = record
  85.     tod_elapsedt: DWORD;
  86.     tod_msecs: DWORD;
  87.     tod_hours: DWORD;
  88.     tod_mins: DWORD;
  89.     tod_secs: DWORD;
  90.     tod_hunds: DWORD;
  91.     tod_timezone: LONG;
  92.     tod_tinterval: DWORD;
  93.     tod_day: DWORD;
  94.     tod_month: DWORD;
  95.     tod_year: DWORD;
  96.     tod_weekday: DWORD;
  97.   end;
  98.   {$EXTERNALSYM _TIME_OF_DAY_INFO}
  99.   TIME_OF_DAY_INFO = _TIME_OF_DAY_INFO;
  100.   {$EXTERNALSYM TIME_OF_DAY_INFO}
  101.   PTIME_OF_DAY_INFO = ^TIME_OF_DAY_INFO;
  102.   {$EXTERNALSYM PTIME_OF_DAY_INFO}
  103.   LPTIME_OF_DAY_INFO = ^TIME_OF_DAY_INFO;
  104.   {$EXTERNALSYM LPTIME_OF_DAY_INFO}
  105.   TTimeOfDayInfo = TIME_OF_DAY_INFO;
  106.   PTimeOfDayInfo = PTIME_OF_DAY_INFO;  
  107. //
  108. // Special Values and Constants
  109. //
  110. //
  111. // Mask bits for use with NetRemoteComputerSupports:
  112. //
  113. const
  114.   SUPPORTS_REMOTE_ADMIN_PROTOCOL = $00000002;
  115.   {$EXTERNALSYM SUPPORTS_REMOTE_ADMIN_PROTOCOL}
  116.   SUPPORTS_RPC                   = $00000004;
  117.   {$EXTERNALSYM SUPPORTS_RPC}
  118.   SUPPORTS_SAM_PROTOCOL          = $00000008;
  119.   {$EXTERNALSYM SUPPORTS_SAM_PROTOCOL}
  120.   SUPPORTS_UNICODE               = $00000010;
  121.   {$EXTERNALSYM SUPPORTS_UNICODE}
  122.   SUPPORTS_LOCAL                 = $00000020;
  123.   {$EXTERNALSYM SUPPORTS_LOCAL}
  124.   SUPPORTS_ANY                   = DWORD($FFFFFFFF);
  125.   {$EXTERNALSYM SUPPORTS_ANY}
  126. //
  127. // Flag bits for RxRemoteApi:
  128. //
  129. const
  130.   NO_PERMISSION_REQUIRED = $00000001;      // set if use NULL session
  131.   {$EXTERNALSYM NO_PERMISSION_REQUIRED}
  132.   ALLOCATE_RESPONSE      = $00000002;      // set if RxRemoteApi allocates response buffer
  133.   {$EXTERNALSYM ALLOCATE_RESPONSE}
  134.   USE_SPECIFIC_TRANSPORT = DWORD($80000000);
  135.   {$EXTERNALSYM USE_SPECIFIC_TRANSPORT}
  136. implementation
  137. {$IFDEF DYNAMIC_LINK}
  138. var
  139.   _NetRemoteTOD: Pointer;
  140. function NetRemoteTOD;
  141. begin
  142.   GetProcedureAddress(_NetRemoteTOD, netapi32, 'NetRemoteTOD');
  143.   asm
  144.     mov esp, ebp
  145.     pop ebp
  146.     jmp [_NetRemoteTOD]
  147.   end;
  148. end;
  149. {$ELSE}
  150. function NetRemoteTOD; external netapi32 name 'NetRemoteTOD';
  151. {$ENDIF DYNAMIC_LINK}
  152. {$IFDEF DYNAMIC_LINK}
  153. var
  154.   _NetRemoteComputerSupports: Pointer;
  155. function NetRemoteComputerSupports;
  156. begin
  157.   GetProcedureAddress(_NetRemoteComputerSupports, netapi32, 'NetRemoteComputerSupports');
  158.   asm
  159.     mov esp, ebp
  160.     pop ebp
  161.     jmp [_NetRemoteComputerSupports]
  162.   end;
  163. end;
  164. {$ELSE}
  165. function NetRemoteComputerSupports; external netapi32 name 'NetRemoteComputerSupports';
  166. {$ENDIF DYNAMIC_LINK}
  167. // todo cdecl function so no dynamic linking for the time being...
  168. {$IFDEF VER140}
  169. function RxRemoteApi; external netapi32 name 'RxRemoteApi';
  170. {$ENDIF}
  171. end.