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.

27 lines
982 B

  1. #ifndef __EX_GDI_W_H__
  2. #define __EX_GDI_W_H__
  3. #ifndef WIN32_LEAN_AND_MEAN
  4. #define WIN32_LEAN_AND_MEAN
  5. #endif
  6. #include <windows.h>
  7. #include <windowsx.h>
  8. #ifndef __cplusplus
  9. extern "C" {
  10. #endif
  11. BOOL ExExtTextOutW(HDC hdc, // handle to device context.
  12. int X, // x-coordinate of reference point
  13. int Y, // y-coordinate of reference point
  14. UINT fuOptions, // text-output options.
  15. CONST RECT *lprc, // optional clipping and/or opaquing rectangle.
  16. LPWSTR lpString, // points to string.
  17. UINT cbCount, // number of characters in string.
  18. CONST INT *lpDx); // pointer to array of intercharacter spacing values );
  19. BOOL ExGetTextExtentPoint32W(HDC hdc, // handle of device context.
  20. LPWSTR wz, // address of text string.
  21. int cch, // number of characters in string.
  22. LPSIZE lpSize); // address of structure for string size.
  23. #ifndef __cplusplus
  24. }
  25. #endif
  26. #endif //__EX_GDI_W_H__