Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
8answers
1k views

How can I write a generic C function for calling a Win32 function?

To allow access to the Win32 API from a scripting language (written in C), I would like to write a function such as the following: void Call(LPCSTR DllName, LPCSTR FunctionName, LPSTR ReturnValue, ...
4
votes
1answer
1k views

Custom X86_64 calling convention to C function call

I've to do an interface (say, a wrapper) that allow a call from X86_64 assembly code using his calling convention to C function, with other calling convention. The best thing would be to be pretty ...
4
votes
2answers
215 views

void pointers and ffcall library

I'm using the ffcall (specifically the avcall package of ffcall) library to dynamically push parameters to variadic functions. i.e. we have int blah (char *a, int b, double c, ...); and we want to ...
4
votes
6answers
1k views

Haskell binding with Ruby through FFI?

Since both ruby and Haskell supports FFI, Is it possible to call Haskell code from ruby, may be through FFI ? Is there any Haskell binding in Ruby ?
2
votes
1answer
184 views

Does iPhone libffi require jailbreak?

I'd like to write an app-store-approvable app for the iPhone OS which uses libffi. Is this allowed? I am capable of rewriting all of the parts that use it with things like NSInvocation without too ...
1
vote
2answers
372 views

Can Libffi be built for Cortex-M3?

I'm trying to build the foreign function interface library for a Cortex-M3 processor using GCC. According to http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html: -mthumb Generate code for the ...
1
vote
1answer
159 views

Io does not compile on Mac OS X Snow Leopard

I followed the instructions in the README, they are very simple cd build cmake .. make install The problem occurs after the make install command. Io will not compile, specifically because of the ...
0
votes
1answer
63 views

Call name of function, rather than pointer of function

The manpage for libffi features an example that, essentially, requires a pointer to the function (in the examples case, puts). However, what do I do if I only know the name of the function, but don't ...
0
votes
1answer
143 views

Install rb-inotify on solaris

I am trying to install rb-inotify on a Solaris box. Result of uname -a: SunOS test9 5.10 Generic_142901-02 i86pc i386 i86pc ruby-1.8.7 and rubygems-1.7.2 have been compiled and installed but after ...
0
votes
2answers
334 views

Javascript String to C++ char pointer -LPSTR buffer in JSCTypes

I am accessing the dll from Javascript using JSCTypes. I have to receive data by passing a character buffer to the following api, __declspec(dllexport) WORD WINAPI receive( LPWORD ...
0
votes
1answer
255 views

Calling Windows API with libffi on MinGW

I'm trying to have FFI support for my new programming language, which is written in C++ with QT Creator using the MinGW toolchain. To do this I used a custom-built version of libffi found here: ...
0
votes
1answer
204 views

Intel Compiler and Python/ctypes/libffi

I am having trouble building a working version of Python with ctypes using the Intel Compiler (11.1). The trouble is, that libffi under the ctypes module does not work properly when interfacing with ...
0
votes
1answer
136 views

NULL in a RubyCocoa application?

I'm creating an application in RubyCocoa and I have this code: fileContents = OSX::NSAttributedString.alloc.initWithData_options_documentAttributes_error_(data, null, null, outError) It gives me ...