X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=support%2Fsupportw.c;h=49ed549c5d2f546ffeffd31a2e3b8289fa32af1a;hb=d93d002e8b2220ae86d8451e425f868f2cfdd3ac;hp=5e3daa4f2c57fd09530cf91fbb3089ea04c8dbae;hpb=742b66ab330f401689cc5b22ee4e4f08447e36dd;p=mono.git diff --git a/support/supportw.c b/support/supportw.c index 5e3daa4f2c5..49ed549c5d2 100644 --- a/support/supportw.c +++ b/support/supportw.c @@ -158,4 +158,22 @@ FindWindowExW (gpointer hwndParent, gpointer hwndChildAfter, const char *classw, return func (hwndParent, hwndChildAfter, classw, window); } +int +SetWindowPos (gpointer hwnd, gpointer hwndInsertAfter, int x, int y, int cx, int cy, unsigned int 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, unsigned int msg, gpointer wparam, gpointer 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) +{ + return 0; +}