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

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { DHCP Callout DLL 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: dhcpssdk.h, released June 2000. The original Pascal    }
  9. { code is: DhcpSSdk.pas, released December 2000. 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 JwaDhcpSSdk;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "dhcpssdk.h"'}
  47. {$HPPEMIT ''}
  48. {$HPPEMIT 'typedef DHCP_IP_ADDRESS *LPDHCP_IP_ADDRESS;'}
  49. {$HPPEMIT ''}
  50. {$I WINDEFINES.INC}
  51. interface
  52. uses
  53.   JwaWinNT, JwaWinType;
  54. //  This structure could change any day.  This will be accurate only for version 0 -- which
  55. //  has to be checked for by any CalloutDLL that is hooking onto the DhcpHandleOptionsHook.
  56. type
  57.   DHCP_IP_ADDRESS = DWORD;
  58.   {$EXTERNALSYM DHCP_IP_ADDRESS}
  59.   LPDHCP_IP_ADDRESS = ^DHCP_IP_ADDRESS;
  60.   {$NODEFINE LPDHCP_IP_ADDRESS}
  61.   TDhcpIpAddress = DHCP_IP_ADDRESS;
  62.   _DHCP_SERVER_OPTIONS = record
  63.     MessageType: LPBYTE;
  64.     SubnetMask: LPDHCP_IP_ADDRESS;
  65.     RequestedAddress: LPDHCP_IP_ADDRESS;
  66.     RequestLeaseTime: LPDWORD;
  67.     OverlayFields: LPBYTE;
  68.     RouterAddress: LPDHCP_IP_ADDRESS;
  69.     Server: LPDHCP_IP_ADDRESS;
  70.     ParameterRequestList: LPBYTE;
  71.     ParameterRequestListLength: DWORD;
  72.     MachineName: PCHAR;
  73.     MachineNameLength: DWORD;
  74.     ClientHardwareAddressType: BYTE;
  75.     ClientHardwareAddressLength: BYTE;
  76.     ClientHardwareAddress: LPBYTE;
  77.     ClassIdentifier: PCHAR;
  78.     ClassIdentifierLength: DWORD;
  79.     VendorClass: LPBYTE;
  80.     VendorClassLength: DWORD;
  81.     DNSFlags: DWORD;
  82.     DNSNameLength: DWORD;
  83.     DNSName: LPBYTE;
  84.     DSDomainNameRequested: LongBool;
  85.     DSDomainName: PCHAR;
  86.     DSDomainNameLen: DWORD;
  87.     ScopeId: LPDWORD;
  88.   end;
  89.   {$EXTERNALSYM _DHCP_SERVER_OPTIONS}
  90.   DHCP_SERVER_OPTIONS = _DHCP_SERVER_OPTIONS;
  91.   {$EXTERNALSYM DHCP_SERVER_OPTIONS}
  92.   LPDHCP_SERVER_OPTIONS = ^DHCP_SERVER_OPTIONS;
  93.   {$EXTERNALSYM LPDHCP_SERVER_OPTIONS}
  94.   TDhcpServerOptions = DHCP_SERVER_OPTIONS;
  95.   PDhcpServerOptions = LPDHCP_SERVER_OPTIONS;
  96. //
  97. // The location in registry where the REG_MULTI_SZ list of callout DLLs
  98. // that the DHCP Server will try to load.
  99. //
  100. const
  101.   DHCP_CALLOUT_LIST_KEY    = WideString('SystemCurrentControlSetServicesDHCPServerParameters');
  102.   {$EXTERNALSYM DHCP_CALLOUT_LIST_KEY}
  103.   DHCP_CALLOUT_LIST_VALUE  = WideString('CalloutDlls');
  104.   {$EXTERNALSYM DHCP_CALLOUT_LIST_VALUE}
  105.   DHCP_CALLOUT_LIST_TYPE   = REG_MULTI_SZ;
  106.   {$EXTERNALSYM DHCP_CALLOUT_LIST_TYPE}
  107.   DHCP_CALLOUT_ENTRY_POINT = 'DhcpServerCalloutEntry';
  108.   {$EXTERNALSYM DHCP_CALLOUT_ENTRY_POINT}
  109. //
  110. // Control CODES used by DHCP Server to notify server state change.
  111. //
  112.   DHCP_CONTROL_START    = $00000001;
  113.   {$EXTERNALSYM DHCP_CONTROL_START}
  114.   DHCP_CONTROL_STOP     = $00000002;
  115.   {$EXTERNALSYM DHCP_CONTROL_STOP}
  116.   DHCP_CONTROL_PAUSE    = $00000003;
  117.   {$EXTERNALSYM DHCP_CONTROL_PAUSE}
  118.   DHCP_CONTROL_CONTINUE = $00000004;
  119.   {$EXTERNALSYM DHCP_CONTROL_CONTINUE}
  120. //
  121. // Other ControlCodes used by various Callout HOOKS.
  122. //
  123.   DHCP_DROP_DUPLICATE      = $00000001; // duplicate of pkt being processed
  124.   {$EXTERNALSYM DHCP_DROP_DUPLICATE}
  125.   DHCP_DROP_NOMEM          = $00000002; // not enough server mem in queues
  126.   {$EXTERNALSYM DHCP_DROP_NOMEM}
  127.   DHCP_DROP_INTERNAL_ERROR = $00000003; // ooops?
  128.   {$EXTERNALSYM DHCP_DROP_INTERNAL_ERROR}
  129.   DHCP_DROP_TIMEOUT        = $00000004; // too late, pkt is too old
  130.   {$EXTERNALSYM DHCP_DROP_TIMEOUT}
  131.   DHCP_DROP_UNAUTH         = $00000005; // server is not authorized to run
  132.   {$EXTERNALSYM DHCP_DROP_UNAUTH}
  133.   DHCP_DROP_PAUSED         = $00000006; // service is paused
  134.   {$EXTERNALSYM DHCP_DROP_PAUSED}
  135.   DHCP_DROP_NO_SUBNETS     = $00000007; // no subnets configured on server
  136.   {$EXTERNALSYM DHCP_DROP_NO_SUBNETS}
  137.   DHCP_DROP_INVALID        = $00000008; // invalid packet or client
  138.   {$EXTERNALSYM DHCP_DROP_INVALID}
  139.   DHCP_DROP_WRONG_SERVER   = $00000009; // client in different DS enterprise
  140.   {$EXTERNALSYM DHCP_DROP_WRONG_SERVER}
  141.   DHCP_DROP_NOADDRESS      = $0000000A; // no address available to offer
  142.   {$EXTERNALSYM DHCP_DROP_NOADDRESS}
  143.   DHCP_DROP_PROCESSED      = $0000000B; // packet has been processed
  144.   {$EXTERNALSYM DHCP_DROP_PROCESSED}
  145.   DHCP_DROP_GEN_FAILURE    = $00000100; // catch-all error
  146.   {$EXTERNALSYM DHCP_DROP_GEN_FAILURE}
  147.   DHCP_SEND_PACKET         = $10000000; // send the packet on wire
  148.   {$EXTERNALSYM DHCP_SEND_PACKET}
  149.   DHCP_PROB_CONFLICT       = $20000001; // address conflicted..
  150.   {$EXTERNALSYM DHCP_PROB_CONFLICT}
  151.   DHCP_PROB_DECLINE        = $20000002; // an addr got declined
  152.   {$EXTERNALSYM DHCP_PROB_DECLINE}
  153.   DHCP_PROB_RELEASE        = $20000003; // an addr got released
  154.   {$EXTERNALSYM DHCP_PROB_RELEASE}
  155.   DHCP_PROB_NACKED         = $20000004; // a client is being nacked.
  156.   {$EXTERNALSYM DHCP_PROB_NACKED}
  157.   DHCP_GIVE_ADDRESS_NEW    = $30000001; // give client a "new" address
  158.   {$EXTERNALSYM DHCP_GIVE_ADDRESS_NEW}
  159.   DHCP_GIVE_ADDRESS_OLD    = $30000002; // renew client's "old" address
  160.   {$EXTERNALSYM DHCP_GIVE_ADDRESS_OLD}
  161.   DHCP_CLIENT_BOOTP        = $30000003; // client is a BOOTP client
  162.   {$EXTERNALSYM DHCP_CLIENT_BOOTP}
  163.   DHCP_CLIENT_DHCP         = $30000004; // client is a DHCP client
  164.   {$EXTERNALSYM DHCP_CLIENT_DHCP}
  165. type
  166.   LPDHCP_CONTROL = function (dwControlCode: DWORD; lpReserved: LPVOID): DWORD; stdcall;
  167.   {$EXTERNALSYM LPDHCP_CONTROL}
  168.   PDhcpControl = LPDHCP_CONTROL;
  169. {
  170. Routine Description:
  171.     This routine is called whenever the DHCP Server service is
  172.     started, stopped, paused or continued as defined by the values of
  173.     the dwControlCode parameter.  The lpReserved parameter is reserved
  174.     for future use and it should not be interpreted in any way.   This
  175.     routine should not block.
  176. Arguments:
  177.     dwControlCode - one of the DHCP_CONTROL_* values
  178.     lpReserved - reserved for future use.
  179. }
  180. type
  181.   LPDHCP_NEWPKT = function (var Packet: LPBYTE; var PacketSize: DWORD; IpAddress: DWORD;
  182.     Reserved: LPVOID; var PktContext: LPVOID; ProcessIt: LPBOOL): DWORD; stdcall;
  183.   {$EXTERNALSYM LPDHCP_NEWPKT}
  184.   PDhcpNewPkt = LPDHCP_NEWPKT;
  185. {
  186. Routine Description:
  187.     This routine is called soon after the DHCP Server receives a
  188.     packet that it attempts to process.  This routine is in the
  189.     critical path of server execution and should return very fast, as
  190.     otherwise server performance will be impacted.  The Callout DLL
  191.     can modify the buffer or return a new buffer via the Packet,
  192.     PacketSize arguments.  Also, if the callout DLL has internal
  193.     structures to keep track of the packet and its progress, it can
  194.     then return a context to this packet in the PktContext parameter.
  195.     This context will be passed to almost all other hooks to indicate
  196.     the packet being referred to.  Also, if the Callout DLL is
  197.     planning on processing the packet or for some other reason the
  198.     DHCP server is not expected to process this packet, then it can
  199.     set the ProcessIt flag to FALSE to indicate that the packet is to
  200.     be dropped.
  201. Arguments:
  202.     Packet - This parameter points to a character buffer that holds
  203.     the actual packet received by the DHCP Server.
  204.     PacketSize - This parameter points to a variable that holds the
  205.     size of the above buffer.
  206.     IpAddress - This parameter points to an IPV4 host order IP address
  207.     of the socket that this packet was received on.
  208.     Reserved -Reserved for future use.
  209.     PktContect - This is an opaque pointer used by the DHCP Server for
  210.     future references to this packet.  It is expected that the callout
  211.     DLL will provide this pointer if it is interested in keeping track
  212.     of the packet.  (See the descriptions for the hooks below for
  213.     other usage of this Context).
  214.     ProcessIt - This is a BOOL flag that the CalloutDll can set to
  215.     TRUE or reset to indicate if the DHCP Server should continue
  216.     processing this packet or not, respectively.
  217. }
  218. type
  219.   LPDHCP_DROP_SEND = function (var Packet: LPBYTE; var PacketSize: DWORD;
  220.     ControlCode, IpAddress: DWORD; Reserved, PktContext: LPVOID): DWORD; stdcall;
  221.   {$EXTERNALSYM LPDHCP_DROP_SEND}
  222.   PDhcpDropSend = LPDHCP_DROP_SEND;
  223. {
  224. Routine Description:
  225.     This hook is called if a packet is (DropPktHook) dropped for some
  226.     reason or if the packet is completely processed.   (If a packet is
  227.     dropped, the hook is called twice as it is called once again to
  228.     note that the packet has been completely processed).  The callout
  229.     DLL should  be prepared to handle this hook multiple times for a
  230.     packet. This routine should not block. The ControlCode parameter
  231.     defines the reasons for the packet being dropped:
  232.     * DHCP_DROP_DUPLICATE - This packet is a duplicate of another
  233.       received by the server.
  234.     * DHCP_DROP_NOMEM - Not enough memory to process the packet.
  235.     * DHCP_DROP_INTERNAL_ERROR - Unexpected nternal error occurred.
  236.     * DHCP_DROP_TIMEOUT - The packet is too old to process.
  237.     * DHCP_DROP_UNAUTH - The server is not authorized.
  238.     * DHCP_DROP_PAUSED - The server is paused.
  239.     * DHCP_DROP_NO_SUBNETS - There are no subnets configured.
  240.     * DHCP_DROP_INVALID - The packet is invalid or it came on an
  241.       invalid socket ..
  242.     * DHCP_DROP_WRONG_SERVER - The packet was sent to the wrong DHCP Server.
  243.     * DHCP_DROP_NOADDRESS - There is no address to offer.
  244.     * DHCP_DROP_PROCESSED - The packet has been processed.
  245.     * DHCP_DROP_GEN_FAILURE - An unknown error occurred.
  246.     This routine is also called right before a response is sent down
  247.     the wire (SendPktHook) and in this case the ControlCode has a
  248.     value of DHCP_SEND_PACKET.
  249. Arguments:
  250.     Packet - This parameter points to a character buffer that holds
  251.     the packet being processed by the DHCP Server.
  252.     PacketSize - This parameter points to a variable that holds the
  253.     size of the above buffer.
  254.     ControlCode - See description for various control codes.
  255.     IpAddress - This parameter points to an IPV4 host order IP address
  256.     of the socket that this packet was received on.
  257.     Reserved - Reserved for future use.
  258.     PktContext - This parameter is the packet context that the Callout
  259.     DLL NewPkt Hook returned for this packet.  This can be used to
  260.     track a packet.
  261. }
  262. type
  263.   LPDHCP_PROB = function (Packet: LPBYTE; PacketSize, ControlCode, IpAddress,
  264.     AltAddress: DWORD; Reserved, PktContext: LPVOID): DWORD; stdcall;
  265.   {$EXTERNALSYM LPDHCP_PROB}
  266.   PDhcpProb = LPDHCP_PROB;
  267. {
  268. Routine Description:
  269.     This routine is called whenever special events occur that cause
  270.     the packet to be dropped etc.  The possible ControlCodes and their
  271.     meanings are as follows:
  272.     * DHCP_PROB_CONFLICT - The address attempted to be offered
  273.       (AltAddress) is in use in the network already.
  274.     * DHCP_PROB_DECLINE - The packet was a DECLINE message for the
  275.       address specified in AltAddress.
  276.     * DHCP_PROB_RELEASE - The packet was a RELEASE message for the
  277.       address specified in AltAddress.
  278.     * DHCP_PROB_NACKED - The packet was a REQUEST message for address
  279.       specified in AltAddress and it was NACKed by the server.
  280.     This routine should not block.
  281. Arguments:
  282.     Packet - This parameter is the buffer of the packet being
  283.     processed.
  284.     PacketSize - This is the size of the above buffer.
  285.     ControlCode - Specifies the event. See description below for
  286.     control codes and meanings.
  287.     IpAddress - IpV4 address of socket this packet was received on.
  288.     AltAddress - Request IpV4 Address or Ip address that is in
  289.     conflict.
  290.     Reserved - Reserve for future use.
  291.     PktContext - This is the context returned by the NewPkt hook for
  292.     this packet.
  293. }
  294. type
  295.   LPDHCP_GIVE_ADDRESS = function (Packet: LPBYTE; PacketSize, ControlCode, IpAddress,
  296.     AltAddress, AddrType, LeaseTime: DWORD; Reserved, PktContext: LPVOID): DWORD; stdcall;
  297.   {$EXTERNALSYM LPDHCP_GIVE_ADDRESS}
  298.   PDhcpGiveAddress = LPDHCP_GIVE_ADDRESS;
  299. {
  300. Routine Description:
  301.     This routine is called when the server is about to send an ACK to
  302.     a REQUEST message.  The ControlCode specifies if the address is a
  303.     totally new address or if it an renewal of an old address (with
  304.     values DHCP_GIVE_ADDRESS_NEW and DHCP_GIVE_ADDRESS_OLD
  305.     respectively). The address being offered is passed as the
  306.     AltAddress parameter and the AddrType parameter can be one of
  307.     DHCP_CLIENT_BOOTP or DHCP_CLIENT_DHCP indicating whether the
  308.     client is using BOOTP or DHCP respectively. This call should not
  309.     block.
  310. Arguments:
  311.     Packet - This parameter is the buffer of the packet being
  312.     processed.
  313.     PacketSize - This is the size of the above buffer.
  314.     ControlCode -  See description above for control codes and
  315.     meanings.
  316.     IpAddress - IpV4 address of socket this packet was received on.
  317.     AltAddress - IpV4 address being ACKed to the client.
  318.     AddrType - Is this a DHCP or BOOTP address?
  319.     LeaseTime - Lease duration being passed.
  320.     Reserved - Reserve for future use.
  321.     PktContext - This is the context returned by the NewPkt hook for
  322.     this packet.
  323. }
  324. type
  325.   LPDHCP_HANDLE_OPTIONS = function (Packet: LPBYTE; PacketSize: DWORD;
  326.     Reserved, PktContext: LPVOID; ServerOptions: DHCP_SERVER_OPTIONS): DWORD; stdcall;
  327.   {$EXTERNALSYM LPDHCP_HANDLE_OPTIONS}
  328.   TDhcpHandleOptions = LPDHCP_HANDLE_OPTIONS;
  329. {
  330. Routine Description:
  331.     This routine can be utilized by the CalloutDLL to avoid parsing
  332.     the whole packet.  The packet is parsed by the server and some
  333.     commonly used options are returned in the parsed pointers
  334.     structure (see header for definition of DHCP_SERVER_OPTIONS).  The
  335.     hook is expected to make a copy of the structure pointed to by
  336.     ServerOptions if it needs it beyond this function call.  This
  337.     routine may be called several times for a single packet.  This
  338.     routine should not block.
  339. Arguments:
  340.     Packet - This parameter is the buffer of the packet being
  341.     processed.
  342.     PacketSize - This is the size of the above buffer.
  343.     Reserved - Reserve for future use.
  344.     PktContext - This is the context returned by the NewPkt hook for
  345.     this packet.
  346.     ServerOptions - This parameter is the structure that contains a
  347.     bunch of pointers that represent corresponding options.
  348. }
  349. type
  350.   LPDHCP_DELETE_CLIENT = function (IpAddress: DWORD; HwAddress: LPBYTE;
  351.     HwAddressLength: ULONG; Reserved, ClientType: DWORD): DWORD; stdcall;
  352.   {$EXTERNALSYM LPDHCP_DELETE_CLIENT}
  353.   PDhcpDeleteClient = LPDHCP_DELETE_CLIENT;
  354. {
  355. Routine Description:
  356.     This routine is called before a client lease is deleted off the
  357.     active leases database.  The ClientType field is currently not
  358.     provided and this should not be used.  This routine should not
  359.     block.
  360. Arguments:
  361.     IpAddress - IpV4 address of the client lease being deleted.
  362.     HwAddress - Buffer holding the Hardware address of the client (MAC).
  363.     HwAddressLength - This specifies the length of the above buffer.
  364.     Reserved - Reserved for future use.
  365.     ClientType - Reserved for future use.
  366. }
  367. type
  368.   _DHCP_CALLOUT_TABLE = record
  369.     DhcpControlHook: LPDHCP_CONTROL;
  370.     DhcpNewPktHook: LPDHCP_NEWPKT;
  371.     DhcpPktDropHook: LPDHCP_DROP_SEND;
  372.     DhcpPktSendHook: LPDHCP_DROP_SEND;
  373.     DhcpAddressDelHook: LPDHCP_PROB;
  374.     DhcpAddressOfferHook: LPDHCP_GIVE_ADDRESS;
  375.     DhcpHandleOptionsHook: LPDHCP_HANDLE_OPTIONS;
  376.     DhcpDeleteClientHook: LPDHCP_DELETE_CLIENT;
  377.     DhcpExtensionHook: LPVOID;
  378.     DhcpReservedHook: LPVOID;
  379.   end;
  380.   {$EXTERNALSYM _DHCP_CALLOUT_TABLE}
  381.   DHCP_CALLOUT_TABLE = _DHCP_CALLOUT_TABLE;
  382.   {$EXTERNALSYM DHCP_CALLOUT_TABLE}
  383.   LPDHCP_CALLOUT_TABLE = ^DHCP_CALLOUT_TABLE;
  384.   {$EXTERNALSYM LPDHCP_CALLOUT_TABLE}
  385.   TDhcpCalloutTable = DHCP_CALLOUT_TABLE;
  386.   PDhcpCalloutTable = LPDHCP_CALLOUT_TABLE;
  387. type
  388.   LPDHCP_ENTRY_POINT_FUNC = function (ChainDlls: LPWSTR; CalloutVersion: DWORD;
  389.     var CalloutTbl: DHCP_CALLOUT_TABLE): DWORD; stdcall;
  390.   {$EXTERNALSYM LPDHCP_ENTRY_POINT_FUNC}
  391.   PDhcpEntryPointFunc = LPDHCP_ENTRY_POINT_FUNC;
  392. {
  393. Routine Description:
  394.     This is the routine that is called by the DHCP Server when it
  395.     successfully loads a DLL.    If the routine succeeds, then the
  396.     DHCP Server does not attempt to load any of the DLLs specified in
  397.     the ChainDlls list of DLLs.   If this function fails for some
  398.     reason, then the DHCP Server proceeds to the next DLL in the
  399.     ChainDlls structure.
  400.     Note that for version negotiation, the server may call this
  401.     routine several times until a compatible version is found.
  402.     It is expected that the entrypoint routine would walk through the
  403.     names of the dlls and attempt to load each of them and when it
  404.     succeeds in retrieving the entry point, it attempts to get the
  405.     cumulative set of hooks by repeating the above procedure (as done
  406.     by the DHCP Server).
  407. Arguments:
  408.     ChainDlls - This is a set of DLL names in REG_MULTI_SZ format (as
  409.     returned by Registry function calls).  This does not contain the
  410.     name of the current DLL itself, but only the names of all DLLs
  411.     that follow the current DLL.
  412.     CalloutVersion - This is the version that the Callout DLL is
  413.     expected to support.  The current version number is 0.
  414.     CalloutTbl - This is the cumulative set of Hooks that is needed by
  415.     the current DLLs as well as all the DLLs in ChainDlls.   It is the
  416.     responsibility of the current DLL to retrive the cumulative set of
  417.     Hooks and merge that with its own set of hooks and return that in
  418.     this table structure.  The table structure is defined above.
  419. }
  420. implementation
  421. end.