too much INFO changed in INF...

SVN revision: 43139
This commit is contained in:
Vincent Torri 2009-10-18 04:24:57 +00:00
parent a5ccd2516a
commit 9a0797198d
2 changed files with 3 additions and 3 deletions

View File

@ -539,7 +539,7 @@ _ecore_win32_event_handle_unmap_notify(Ecore_Win32_Callback_Data *msg)
void
_ecore_win32_event_handle_configure_notify(Ecore_Win32_Callback_Data *msg)
{
WINDOWINF wi;
WINDOWINFO wi;
Ecore_Win32_Event_Window_Configure *e;
WINDOWPOS *window_pos;
@ -549,7 +549,7 @@ _ecore_win32_event_handle_configure_notify(Ecore_Win32_Callback_Data *msg)
if (!e) return;
window_pos = (WINDOWPOS *)msg->data_param;
wi.cbSize = sizeof(WINDOWINF);
wi.cbSize = sizeof(WINDOWINFO);
if (!GetWindowInfo(window_pos->hwnd, &wi))
{
free(e);

View File

@ -475,7 +475,7 @@ ecore_win32_window_shape_set(Ecore_Win32_Window *window,
HRGN rgn;
int x;
int y;
OSVERSIONINF version_info;
OSVERSIONINFO version_info;
if (window == NULL)
return;