diff options
author | Colin Walters <walters@verbum.org> | 2013-08-02 18:56:46 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2013-08-02 18:59:10 -0400 |
commit | fbf303a972195f009b8bb37d77212f089a74d20e (patch) | |
tree | 8086fd44be2ac5c814a905993e9966ce89c2353f /gir | |
parent | f299e2512769030b76e6ef7662f95194b972450e (diff) | |
download | gobject-introspection-fbf303a972195f009b8bb37d77212f089a74d20e.tar.gz |
Add win32-1.0.gir
So for doing the GTK+ stack with gobject-introspection on Windows, we
basically need to stub out the win32 types just like we do for xlib.
Contributed by serenomickael@gmail.com
Diffstat (limited to 'gir')
-rw-r--r-- | gir/win32-1.0.gir | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gir/win32-1.0.gir b/gir/win32-1.0.gir new file mode 100644 index 00000000..ac9db850 --- /dev/null +++ b/gir/win32-1.0.gir @@ -0,0 +1,19 @@ +<?xml version="1.0"?> +<repository version="1.2" + xmlns="http://www.gtk.org/introspection/core/1.0" + xmlns:c="http://www.gtk.org/introspection/c/1.0"> + <namespace name="win32" version="1.0" + c:identifier-prefixes="" + c:symbol-prefixes="Win32"> + <alias name="HWND" c:type="HWND"> + <type name="guint" c:type="guint"/> + </alias> + <alias name="HICON" c:type="HICON"> + <type name="gulong" c:type="gulong"/> + </alias> + <alias name="HGDIOBJ" c:type="HGDIOBJ"> + <type name="gulong" c:type="gulong"/> + </alias> + </namespace> +</repository> + |