You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int WINAPI textdisp_DrawTextExW(HDC hdc, LPWSTR lpchText, int cchText, LPRECT lprc, UINT format, LPDRAWTEXTPARAMS lpdtp) {
58
+
CUSTOM_SYSTEM_FONT;
59
+
returnchain_DrawTextExW(hdc, lpchText, cchText, lprc, format, lpdtp);
60
+
}
61
+
62
+
int WINAPI textdisp_DrawTextExA(HDC hdc, LPSTR lpchText, int cchText, LPRECT lprc, UINT format, LPDRAWTEXTPARAMS lpdtp) {
63
+
CUSTOM_SYSTEM_FONT;
64
+
returnchain_DrawTextExU(hdc, lpchText, cchText, lprc, format, lpdtp);
65
+
}
66
+
67
+
BOOL WINAPI textdisp_ExtTextOutW(HDC hdc, int x, int y, UINT options, const RECT * lprect, LPCWSTR lpString, UINT c, const INT* lpDx) {
68
+
CUSTOM_SYSTEM_FONT;
69
+
returnchain_ExtTextOutW(hdc, x, y, options, lprect, lpString, x, lpDx);
70
+
}
71
+
72
+
BOOL WINAPI textdisp_ExtTextOutA(HDC hdc, int x, int y, UINT options, const RECT* lprect, LPCSTR lpString, UINT c, const INT* lpDx) {
73
+
CUSTOM_SYSTEM_FONT;
74
+
returnchain_ExtTextOutU(hdc, x, y, options, lprect, lpString, x, lpDx);
75
+
}
76
+
77
+
BOOL WINAPI textdisp_PolyTextOutW(HDC hdc, const POLYTEXTW* ppt, int nstrings) {
78
+
CUSTOM_SYSTEM_FONT;
79
+
returnchain_PolyTextOutW(hdc, ppt, nstrings);
80
+
}
81
+
82
+
BOOL WINAPI textdisp_PolyTextOutA(HDC hdc, const POLYTEXTA* ppt, int nstrings) {
83
+
CUSTOM_SYSTEM_FONT;
84
+
returnchain_PolyTextOutU(hdc, ppt, nstrings);
85
+
}
86
+
87
+
LONG WINAPI textdisp_TabbedTextOutW(HDC hdc, int x, int y, LPCWSTR lpString, int chCount, int nTabPositions, const INT* lpnTabStopPositions, int nTabOrigin) {
88
+
CUSTOM_SYSTEM_FONT;
89
+
returnchain_TabbedTextOutW(hdc, x, y, lpString, chCount, nTabPositions, lpnTabStopPositions, nTabOrigin);
90
+
}
91
+
92
+
LONG WINAPI textdisp_TabbedTextOutA(HDC hdc, int x, int y, LPCSTR lpString, int chCount, int nTabPositions, const INT* lpnTabStopPositions, int nTabOrigin) {
93
+
CUSTOM_SYSTEM_FONT;
94
+
returnchain_TabbedTextOutU(hdc, x, y, lpString, chCount, nTabPositions, lpnTabStopPositions, nTabOrigin);
95
+
}
96
+
97
+
BOOL WINAPI textdisp_TextOutW(HDC hdc, int x, int y, LPCWSTR lpString, int c) {
98
+
CUSTOM_SYSTEM_FONT;
99
+
returnchain_TextOutW(hdc, x, y, lpString, c);
100
+
}
101
+
102
+
BOOL WINAPI textdisp_TextOutA(HDC hdc, int x, int y, LPCSTR lpString, int c) {
0 commit comments