1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-02 19:50:12 -05:00
putty-source/windows/utils/getdlgitemtext_alloc.c
Simon Tatham 05a13d5cf7 GetDlgItemText_alloc: avoid realloc loop.
This rewrite, due to SATO Kentaro, uses GetWindowTextLength (which I
hadn't known about) to find the correct size to allocate the buffer
the first time, avoiding the need to keep growing it until a call to
GetDlgItemText doesn't have to truncate the result.
2025-01-25 11:09:20 +00:00

28 lines
709 B
C

/*
* Handy wrappers around GetDlgItemText (A and W) which don't make you
* invent an arbitrary length limit on the output string. Returned
* string is dynamically allocated; caller must free.
*/
#include <wchar.h>
#include "putty.h"
char *GetDlgItemText_alloc(HWND hwnd, int id)
{
HWND item = GetDlgItem(hwnd, id);
size_t size = GetWindowTextLengthA(item) + 1;
char *text = snewn(size, char);
GetWindowTextA(item, text, size);
return text;
}
wchar_t *GetDlgItemTextW_alloc(HWND hwnd, int id)
{
HWND item = GetDlgItem(hwnd, id);
size_t size = GetWindowTextLengthW(item) + 1;
wchar_t *text = snewn(size, wchar_t);
GetWindowTextW(item, text, size);
return text;
}