Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2005-11-10 05:24:50 +0300
committerMiguel de Icaza <miguel@gnome.org>2005-11-10 05:24:50 +0300
commitc4b5bae7d19ad070d1d2ba808ac8377d07f56e8e (patch)
tree2723ca708ab9ce950be40b4038ec4268fe0084f2 /support
parent4a2ab0336e97f3591eebbb881a1471d3051946c9 (diff)
2005-11-09 Miguel de Icaza <miguel@novell.com>
* assembly.c (mono_set_dirs): New API entry point to set the assembly and the config directory in one call A more robust framework for relocation and a public API for embedders to use. svn path=/trunk/mono/; revision=52816
Diffstat (limited to 'support')
-rw-r--r--support/supportw.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/support/supportw.c b/support/supportw.c
index 5e3daa4f2c5..9c843e4c4f9 100644
--- a/support/supportw.c
+++ b/support/supportw.c
@@ -158,4 +158,20 @@ 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, uint flags)
+{
+ fprintf (stderr, "SetWindowPos 0x%x 0x%x 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)
+{
+ fprintf (stderr, "SendMessage (%d, 0x%x, 0x%x, 0x%x)\n", hwnd, msg, wparam, lparam);
+}
+
+int
+GetWindowLongA (gpointer hwnd, int a)
+{
+}