Revision: 9321 https://osdn.net/projects/ttssh2/scm/svn/commits/9321 Author: zmatsuo Date: 2021-06-30 00:19:49 +0900 (Wed, 30 Jun 2021) Log Message: ----------- _SetWindowLongW(), _GetWindowLongW() のプロトタイプ追加 Modified Paths: -------------- trunk/teraterm/common/layer_for_unicode.h -------------- next part -------------- Modified: trunk/teraterm/common/layer_for_unicode.h =================================================================== --- trunk/teraterm/common/layer_for_unicode.h 2021-06-29 15:19:41 UTC (rev 9320) +++ trunk/teraterm/common/layer_for_unicode.h 2021-06-29 15:19:49 UTC (rev 9321) @@ -108,6 +108,8 @@ BOOL _AppendMenuW(HMENU hMenu, UINT uFlags, UINT_PTR uIDNewItem, LPCWSTR lpNewItem); int _GetWindowTextW(HWND hWnd, LPWSTR lpString, int nMaxCount); int _GetWindowTextLengthW(HWND hWnd); +LONG _SetWindowLongW(HWND hWnd, int nIndex, LONG dwNewLong); +LONG _GetWindowLongW(HWND hWnd, int nIndex); LONG_PTR _SetWindowLongPtrW(HWND hWnd, int nIndex, LONG_PTR dwNewLong); LONG_PTR _GetWindowLongPtrW(HWND hWnd, int nIndex); LRESULT _CallWindowProcW(WNDPROC lpPrevWndFunc, HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);