Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1999-2002 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: Globals.cpp
  6. * Content: Definition of global variables.
  7. *@@BEGIN_MSINTERNAL
  8. * History:
  9. * Date By Reason
  10. * ==== == ======
  11. * 07/21/99 mjn Created
  12. * 04/13/00 mjn Added g_ProtocolVTBL
  13. *@@END_MSINTERNAL
  14. *
  15. ***************************************************************************/
  16. #include "dncorei.h"
  17. //
  18. // Global Variables
  19. //
  20. #ifndef DPNBUILD_LIBINTERFACE
  21. LONG g_lCoreObjectCount = 0;
  22. #endif // ! DPNBUILD_LIBINTERFACE
  23. DN_PROTOCOL_INTERFACE_VTBL g_ProtocolVTBL =
  24. {
  25. DNPIIndicateEnumQuery,
  26. DNPIIndicateEnumResponse,
  27. DNPIIndicateConnect,
  28. DNPIIndicateDisconnect,
  29. DNPIIndicateConnectionTerminated,
  30. DNPIIndicateReceive,
  31. DNPICompleteListen,
  32. DNPICompleteListenTerminate,
  33. DNPICompleteEnumQuery,
  34. DNPICompleteEnumResponse,
  35. DNPICompleteConnect,
  36. DNPICompleteDisconnect,
  37. DNPICompleteSend,
  38. DNPIAddressInfoConnect,
  39. DNPIAddressInfoEnum,
  40. DNPIAddressInfoListen,
  41. #ifndef DPNBUILD_NOMULTICAST
  42. DNPIIndicateReceiveUnknownSender,
  43. DNPICompleteMulticastConnect,
  44. #endif // DPNBUILD_NOMULTICAST
  45. };