X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=support%2Fsupportw.c;h=51b49697152b36ac93cedb5ba9ea741231deedd7;hb=59ec6fd3d68cc0e7c8085b95a3b436d4c9a3cef4;hp=9c843e4c4f9ec73079e8994471ef5f07e2fb2808;hpb=da4f9e9b2afb23791029d0bb09d78b868aabd870;p=mono.git diff --git a/support/supportw.c b/support/supportw.c index 9c843e4c4f9..51b49697152 100644 --- a/support/supportw.c +++ b/support/supportw.c @@ -159,19 +159,30 @@ FindWindowExW (gpointer hwndParent, gpointer hwndChildAfter, const char *classw, } int -SetWindowPos (gpointer hwnd, gpointer hwndInsertAfter, int x, int y, int cx, int cy, uint flags) +SetWindowPos (gpointer hwnd, gpointer hwndInsertAfter, int x, int y, int cx, int cy, unsigned int flags); + +int +SetWindowPos (gpointer hwnd, gpointer hwndInsertAfter, int x, int y, int cx, int cy, unsigned int flags) { - fprintf (stderr, "SetWindowPos 0x%x 0x%x to [%d,%dx%d,%d] %d\n", hwnd, hwndInsertAfter, x, y, cx, cy, flags); + fprintf (stderr, "SetWindowPos %p %p to [%d,%dx%d,%d] %d\n", hwnd, hwndInsertAfter, x, y, cx, cy, flags); return 1; } int -SendMessageA (gpointer hwnd, uint msg, gpointer wparam, gpointer lparam) +SendMessageA (gpointer hwnd, unsigned int msg, gpointer wparam, gpointer lparam); + +int +SendMessageA (gpointer hwnd, unsigned int msg, gpointer wparam, gpointer lparam) { - fprintf (stderr, "SendMessage (%d, 0x%x, 0x%x, 0x%x)\n", hwnd, msg, wparam, lparam); + fprintf (stderr, "SendMessage (%d, 0x%x, %p, %p)\n", (int) GPOINTER_TO_INT (hwnd), msg, wparam, lparam); + return 0; } +int +GetWindowLongA (gpointer hwnd, int a); + int GetWindowLongA (gpointer hwnd, int a) { + return 0; }