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.

43 lines
1.1 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File Name: fxocDbg.h
  4. //
  5. // Abstract: Header file used by Debug source files
  6. //
  7. // Environment: Windows XP / User Mode
  8. //
  9. // Copyright (c) 2000 Microsoft Corporation
  10. //
  11. // Revision History:
  12. //
  13. // Date: Developer: Comments:
  14. // ----- ---------- ---------
  15. // 15-Mar-2000 Oren Rosenbloom (orenr) Created
  16. //////////////////////////////////////////////////////////////////////////////
  17. #ifndef _FXOCDBG_H_
  18. #define _FXOCDBG_H_
  19. ///////////////////////////////
  20. // fxocDbg_Init
  21. //
  22. // Initialize debug subsystem,
  23. // call at start of app
  24. //
  25. void fxocDbg_Init(HINF hInf = NULL);
  26. ///////////////////////////////
  27. // fxocDbg_Term
  28. //
  29. // Terminate debug subsystem
  30. // Call on app shutdown.
  31. //
  32. void fxocDbg_Term(void);
  33. ///////////////////////////////
  34. // fxocDbg_GetOcFunction
  35. //
  36. // Returns pointer to string
  37. // equivalent of uiFunction
  38. //
  39. const TCHAR* fxocDbg_GetOcFunction(UINT uiFunction);
  40. #endif // _FXOCDBG_H_