Searched refs:text_size (Results 1 – 5 of 5) sorted by relevance
/reactos/sdk/lib/ucrt/internal/ |
H A D | OutputDebugStringA.cpp | 19 size_t const text_size = strlen(text) + 1; in __acrt_OutputDebugStringA() local 20 if (text_size == 0) in __acrt_OutputDebugStringA() 25 auto text_wide = (wchar_t*)_alloca(text_size * sizeof(wchar_t)); in __acrt_OutputDebugStringA() 27 if (mbstowcs_s(&converted, text_wide, text_size, text, text_size - 1) == 0) in __acrt_OutputDebugStringA()
|
/reactos/dll/win32/ole32/ |
H A D | ole32_main.c | 48 SIZE text_size = { 0, 0 }; in OleMetafilePictFromIconAndLabel() local 91 GetTextExtentPoint32W(hdcScreen, lpszLabel, lstrlenW(lpszLabel), &text_size); in OleMetafilePictFromIconAndLabel() 102 SetWindowExtEx(hdc, width, label_offset + text_size.cy, NULL); in OleMetafilePictFromIconAndLabel() 108 TextOutW(hdc, (width-text_size.cx) / 2, label_offset, lpszLabel, lstrlenW(lpszLabel)); in OleMetafilePictFromIconAndLabel() 131 …mfp.yExt = MulDiv(label_offset + text_size.cy, HIMETRIC_INCHES, GetDeviceCaps(hdcScreen, LOGPIXELS… in OleMetafilePictFromIconAndLabel()
|
/reactos/dll/win32/dbgeng/ |
H A D | dbgeng.c | 2840 ULONG *text_size) in debugcontrol_GetPromptText() argument 2842 FIXME("%p, %p, %u, %p stub.\n", iface, buffer, buffer_size, text_size); in debugcontrol_GetPromptText() 3388 ULONG buffer_size, ULONG *text_size) in debugcontrol_GetEventFilterText() argument 3390 FIXME("%p, %u, %p, %u, %p stub.\n", iface, index, buffer, buffer_size, text_size); in debugcontrol_GetEventFilterText()
|
/reactos/sdk/include/psdk/ |
H A D | dbgeng.h | 1752 STDMETHOD(GetPromptText)(THIS_ char *buffer, ULONG buffer_size, ULONG *text_size) PURE; in DECLARE_INTERFACE_() 1824 …HOD(GetEventFilterText)(THIS_ ULONG index, char *buffer, ULONG buffer_size, ULONG *text_size) PURE; in DECLARE_INTERFACE_() 1872 STDMETHOD(GetPromptText)(THIS_ char *buffer, ULONG buffer_size, ULONG *text_size) PURE; in DECLARE_INTERFACE_() 1944 …HOD(GetEventFilterText)(THIS_ ULONG index, char *buffer, ULONG buffer_size, ULONG *text_size) PURE; in DECLARE_INTERFACE_()
|
/reactos/dll/win32/gdiplus/ |
H A D | graphics.c | 5684 SIZE text_size; in draw_string_callback() local 5687 GetTextExtentExPointW(hdc, string + index, ofs, INT_MAX, NULL, NULL, &text_size); in draw_string_callback() 5688 start_x = text_size.cx / args->rel_width; in draw_string_callback() 5690 GetTextExtentExPointW(hdc, string + index, ofs+1, INT_MAX, NULL, NULL, &text_size); in draw_string_callback() 5691 end_x = text_size.cx / args->rel_width; in draw_string_callback()
|