summaryrefslogtreecommitdiff
path: root/vendor/github.com/gotk3/gotk3/glib/gvariant.go.h
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gotk3/gotk3/glib/gvariant.go.h')
-rw-r--r--vendor/github.com/gotk3/gotk3/glib/gvariant.go.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/github.com/gotk3/gotk3/glib/gvariant.go.h b/vendor/github.com/gotk3/gotk3/glib/gvariant.go.h
deleted file mode 100644
index 01d732e..0000000
--- a/vendor/github.com/gotk3/gotk3/glib/gvariant.go.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Same copyright and license as the rest of the files in this project
-
-//GVariant : GVariant — strongly typed value datatype
-// https://developer.gnome.org/glib/2.26/glib-GVariant.html
-
-#ifndef __GVARIANT_GO_H__
-#define __GVARIANT_GO_H__
-
-#include <stdint.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <glib.h>
-
-// Type Casting
-
-static GVariant *
-toGVariant(void *p)
-{
- return (GVariant*)p;
-}
-
-static GVariantBuilder *
-toGVariantBuilder(void *p)
-{
- return (GVariantBuilder*)p;
-}
-
-static GVariantDict *
-toGVariantDict(void *p)
-{
- return (GVariantDict*)p;
-}
-
-static GVariantIter *
-toGVariantIter(void *p)
-{
- return (GVariantIter*)p;
-}
-
-#endif