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.

36 lines
1.1 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // GlobalFuncs.h
  7. //
  8. // Description:
  9. // Contains the declarations of a few unrelated global functions
  10. //
  11. // Implementation Files:
  12. // GlobalFuncs.cpp
  13. //
  14. // Maintained By:
  15. // Vij Vasu (Vvasu) 03-MAR-2000
  16. //
  17. //////////////////////////////////////////////////////////////////////////////
  18. // Make sure that this file is included only once per compile path.
  19. #pragma once
  20. //////////////////////////////////////////////////////////////////////////
  21. // Global function declarations.
  22. //////////////////////////////////////////////////////////////////////////
  23. // Generic callback function used by setupapi file operations.
  24. UINT
  25. CALLBACK
  26. g_GenericSetupQueueCallback(
  27. PVOID pvContextIn // context used by the callback routine
  28. , UINT uiNotificationIn // queue notification
  29. , UINT_PTR uiParam1In // additional notification information
  30. , UINT_PTR uiParam2In // additional notification information
  31. );