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.

26 lines
493 B

  1. #ifndef TEXTOUT_H
  2. #define TEXTOUT_H
  3. /*
  4. * DEFINITIONS ________________________________________________________________
  5. *
  6. */
  7. #ifdef UNICODE
  8. #define szTextOutCLASS TEXT("TextOutClassW")
  9. #else
  10. #define szTextOutCLASS TEXT("TextOutClass")
  11. #endif
  12. /*
  13. * PROTOTYPES _________________________________________________________________
  14. *
  15. */
  16. void RegisterTextOutClass (HINSTANCE);
  17. void UnregisterTextOutClass (void);
  18. #endif