Module: Conv

These types are meant to be used in NativeCall and Callable.

Calling Conventions

C

This is the default.

WindowsFastcall

Stdcall

Example

import cffi

def foo():
    pass

c = cffi.Callable(foo, cffi.Types.U64, conv = cffi.Conv.C)