diff options
author | bloodstalker <thabogre@gmail.com> | 2018-01-20 21:11:50 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-01-20 21:11:50 +0000 |
commit | 825fec9d1a95f410cab43fb9238faa1e078afbae (patch) | |
tree | 6c079909fd1e69888b67a47d6a1b934dc0a0cc9d /bruiser/bruiserffi.h | |
parent | update (diff) | |
download | mutator-825fec9d1a95f410cab43fb9238faa1e078afbae.tar.gz mutator-825fec9d1a95f410cab43fb9238faa1e078afbae.zip |
WIP.using libffi for calling xobjects now.
Diffstat (limited to '')
-rw-r--r-- | bruiser/bruiserffi.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/bruiser/bruiserffi.h b/bruiser/bruiserffi.h new file mode 100644 index 0000000..0f98d2c --- /dev/null +++ b/bruiser/bruiserffi.h @@ -0,0 +1,38 @@ + +/***************************************************Project Mutator****************************************************/ +/*first line intentionally left blank.*/ +/*bruiser's libffi side for calling xobjects*/ +/*Copyright (C) 2018 Farzad Sadeghi + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.*/ +/**********************************************************************************************************************/ +#include <ffi.h> +/**********************************************************************************************************************/ +#ifndef BRUISER_FFI_H +#define BRUISER_FFI_H + +#ifdef __cplusplus +extern "C" { +#endif +ffi_type* ffi_type_ctor(const char* arg_string); +void* ffi_callX(int argc, const char** arg_string, ffi_type rtype, void* x_ptr, const char* ret_type); +void* ffi_callX_var(int argc, const char** arg_string, ffi_type rtype, void* x_ptr, const char* ret_type); +#ifdef __cplusplus +} +#endif +#endif +/**********************************************************************************************************************/ +/*last line intentionally left blank.*/ + |