mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
fixed warning
svn path=/trunk/; revision=4947
This commit is contained in:
parent
08aacf7745
commit
96b4efbbd6
1 changed files with 7 additions and 7 deletions
|
@ -45,13 +45,13 @@ static LRESULT CALLBACK IconTitleWndProc( HWND hWnd, UINT msg, WPARAM wParam, LP
|
||||||
*/
|
*/
|
||||||
const struct builtin_class_descr ICONTITLE_builtin_class =
|
const struct builtin_class_descr ICONTITLE_builtin_class =
|
||||||
{
|
{
|
||||||
"ICONTITLE_CLASS_ATOM", /* name */
|
"ICONTITLE_CLASS_ATOM", /* name */
|
||||||
CS_GLOBALCLASS, /* style */
|
CS_GLOBALCLASS, /* style */
|
||||||
NULL, /* procA (winproc is Unicode only) */
|
NULL, /* procA (winproc is Unicode only) */
|
||||||
IconTitleWndProc, /* procW */
|
(WNDPROC) IconTitleWndProc, /* procW */
|
||||||
0, /* extra */
|
0, /* extra */
|
||||||
(LPCSTR) IDC_ARROW, /* cursor */ /* FIXME Wine uses IDC_ARROWA */
|
(LPCSTR) IDC_ARROW, /* cursor */ /* FIXME Wine uses IDC_ARROWA */
|
||||||
0 /* brush */
|
0 /* brush */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue