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.

38 lines
553 B

  1. /*++
  2. Module Name:
  3. rprintf.h
  4. Author:
  5. Venkatraman Kudallur (venkatk)
  6. ( Ripped off from wininet )
  7. Revision History:
  8. 3-10-2000 venkatk
  9. Created
  10. --*/
  11. #ifndef _RPRINTF_H_
  12. #define _RPRINTF_H_ 1
  13. #ifdef UNUSED
  14. // UNUSED - causes unneed crt bloat
  15. int cdecl rprintf(char*, ...);
  16. #endif
  17. #include <stdarg.h>
  18. int cdecl rsprintf(char*, char*, ...);
  19. int cdecl _sprintf(char*, char*, va_list);
  20. #define SPRINTF rsprintf
  21. #define PRINTF rprintf
  22. #define RPRINTF_INCLUDED
  23. #endif //_RPRINTF_H_