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.

50 lines
846 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. math.hxx
  5. Abstract:
  6. This header file declares math related routines.
  7. Author:
  8. JasonHa
  9. --*/
  10. #ifndef _MATH_HXX_
  11. #define _MATH_HXX_
  12. int sprintEFLOAT(PDEBUG_CLIENT Client, char *ach, ULONG64 offEF);
  13. #if 0 // DOES NOT SUPPORT API64
  14. int sprintFLOAT(char *ach, FLOAT e);
  15. #endif // DOES NOT SUPPORT API64
  16. void vDumpMATRIX(PDEBUG_CLIENT Client, ULONG64);
  17. // Output DEBUG_VALUE as float regardless of Type
  18. HRESULT
  19. OutputFLOATL(
  20. OutputControl *OutCtl,
  21. PDEBUG_CLIENT Client,
  22. PDEBUG_VALUE Value
  23. );
  24. // Output basic EFLOAT_S type
  25. FN_OutputKnownType OutputEFLOAT_S;
  26. // Output basic EFLOAT class
  27. // EFLOAT class has one member of type EFLOAT_S
  28. #define OutputEFLOAT OutputEFLOAT_S
  29. #endif _MATH_HXX_