diff options
author | Graydon, Tracy <tracy.graydon@intel.com> | 2012-11-30 12:11:38 -0800 |
---|---|---|
committer | Graydon, Tracy <tracy.graydon@intel.com> | 2012-11-30 12:11:38 -0800 |
commit | 1a48cb6e7504163228442a2894af21af66e93eb2 (patch) | |
tree | 8d117e9778e44c485d187679bf5250c52e02975d /gi/pygi-foreign.h | |
parent | e319390cebb45884f62ca3c2b22984d8ed82b941 (diff) | |
download | pygobject2-1a48cb6e7504163228442a2894af21af66e93eb2.tar.gz pygobject2-1a48cb6e7504163228442a2894af21af66e93eb2.tar.bz2 pygobject2-1a48cb6e7504163228442a2894af21af66e93eb2.zip |
Update to 2.28 for TINF-96
Diffstat (limited to 'gi/pygi-foreign.h')
-rw-r--r-- | gi/pygi-foreign.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gi/pygi-foreign.h b/gi/pygi-foreign.h new file mode 100644 index 0000000..b07f682 --- /dev/null +++ b/gi/pygi-foreign.h @@ -0,0 +1,48 @@ +/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ +/* + * Copyright (c) 2010 litl, LLC + * Copyright (c) 2010 Collabora Ltd. <http://www.collabora.co.uk/> + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + */ + +#ifndef __PYGI_FOREIGN_H__ +#define __PYGI_FOREIGN_H__ + +#include <Python.h> +#include <girepository.h> + +#include "pygi.h" + +PyObject *pygi_struct_foreign_convert_to_g_argument (PyObject *value, + GIInterfaceInfo *iface_info, + GITransfer transfer, + GIArgument *arg); +PyObject *pygi_struct_foreign_convert_from_g_argument (GIInterfaceInfo *iface_info, + GIArgument *arg); +PyObject *pygi_struct_foreign_release (GIBaseInfo *base_info, + gpointer struct_); + +void pygi_register_foreign_struct_real (const char* namespace_, + const char* name, + PyGIArgOverrideToGIArgumentFunc to_func, + PyGIArgOverrideFromGIArgumentFunc from_func, + PyGIArgOverrideReleaseFunc release_func); + +#endif /* __PYGI_FOREIGN_H__ */ |