diff options
author | Tor Lillqvist <tml@novell.com> | 2008-08-04 23:44:59 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-08-04 23:44:59 +0000 |
commit | a1e3946f58ff20011727a26335e7085eff605a99 (patch) | |
tree | 794a62f7de4eac1a7f5e6b580dc6163cf0bce633 /gtk/gtkwin32embed.h | |
parent | 8d41f35b9b4d7f859ab535229fad7f80be928e5b (diff) | |
download | gtk+-a1e3946f58ff20011727a26335e7085eff605a99.tar.gz |
Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
2008-08-05 Tor Lillqvist <tml@novell.com>
Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
* gtk/gtksocket-win32.c: Don't cast HWND to guint, pass it as such
as the GdkNativeWindow parameter to
gtk_window_remove_embedded_xid(). Debugging printout format fixes.
* gtk/gtkwin32embed.h
* gtk/gtkwin32embed.c: Change the types of wparam and lparam
parameters to actually be WPARAM and LPARAM.
* gtk/gtkplug-win32.c: Adapt accordingly.
svn path=/trunk/; revision=21000
Diffstat (limited to 'gtk/gtkwin32embed.h')
-rw-r--r-- | gtk/gtkwin32embed.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkwin32embed.h b/gtk/gtkwin32embed.h index 4e2223ef33..743af3ccc9 100644 --- a/gtk/gtkwin32embed.h +++ b/gtk/gtkwin32embed.h @@ -82,11 +82,11 @@ void _gtk_win32_embed_push_message (MSG *msg); void _gtk_win32_embed_pop_message (void); void _gtk_win32_embed_send (GdkWindow *recipient, GtkWin32EmbedMessageType message, - gint wparam, - gint lparam); + WPARAM wparam, + LPARAM lparam); void _gtk_win32_embed_send_focus_message (GdkWindow *recipient, GtkWin32EmbedMessageType message, - gint wparam); + WPARAM wparam); void _gtk_win32_embed_set_focus_wrapped (void); gboolean _gtk_win32_embed_get_focus_wrapped (void); |