xprintf.h 828 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef XPRINTF_H
  2. #define XPRINTF_H
  3. //____________________________________________________________________________
  4. //
  5. // File: xprintf.h
  6. //
  7. // Description: Display a printf style message on the current video frame
  8. //
  9. // Author: Keith Looney
  10. //
  11. //____________________________________________________________________________
  12. // Revision History
  13. //
  14. //____________________________________________________________________________
  15. // Includes
  16. #include "pbdll.h"
  17. //____________________________________________________________________________
  18. // Defines
  19. //____________________________________________________________________________
  20. // Declarations
  21. #if __cplusplus
  22. extern "C"
  23. {
  24. #endif
  25. extern int vp5_xprintf(const PB_INSTANCE* ppbi, long pixel, const char* format, ...);
  26. #if __cplusplus
  27. }
  28. #endif
  29. #endif // XPRINTF_H