[System.IO.Compression] Fixed DeflateStream inflate() decompression loop.
[mono.git] / support / supportw.c
index 5e3daa4f2c57fd09530cf91fbb3089ea04c8dbae..51b49697152b36ac93cedb5ba9ea741231deedd7 100644 (file)
@@ -158,4 +158,31 @@ 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);
 
+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);
+
+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);
+
+int
+GetWindowLongA (gpointer hwnd, int a)
+{
+       return 0;
+}