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.

33 lines
836 B

  1. //+---------------------------------------------------------------------------
  2. // Copyright (C) 1991, Microsoft Corporation.
  3. //
  4. // File: dprintf.h
  5. //
  6. // Contents: Debugging output routine function prototypes
  7. //
  8. // Functions: w4printf
  9. // w4vprintf
  10. // w4dprintf
  11. // w4vdprintf
  12. //
  13. // History: 18-Oct-91 vich Created
  14. //
  15. //----------------------------------------------------------------------------
  16. #include <stdarg.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #ifdef WIN32
  21. int _cdecl w4printf(const char *format, ...);
  22. int _cdecl w4vprintf(const char *format, va_list arglist);
  23. #endif
  24. int _cdecl w4dprintf(const char *format, ...);
  25. int _cdecl w4vdprintf(const char *format, va_list arglist);
  26. #ifdef __cplusplus
  27. }
  28. #endif