12345678910111213141516171819202122232425262728293031323334 |
- #define STRICT
- #include <windows.h>
- #include <stdio.h>
- #include "string_unicode.h"
- void string_a::s_GetWindowText(HWND w)
- {
- reset();
- int len=GetWindowTextLengthA(w)+1;
- GetWindowTextA(w,string_buffer_a(*this,len),len);
-
- }
- void string_a::s_SetWindowText(HWND w)
- {
- SetWindowTextA(w,*this);
- }
|