Signature Encoding
| Code | C Type |
|---|---|
i | int32_t, int, bool, char |
l | int64_t, uint64_t, void* |
d | double, float |
s | const char* |
"ids" and the return type is "d".
Using callMixed
Using dlopen
Supported Signatures
| Signature | C Function |
|---|---|
id | double fn(int32_t, double) |
di | double fn(double, int32_t) |
ids | double fn(int32_t, double, const char*) |
sid | double fn(const char*, int32_t, double) |
isd | double fn(int32_t, const char*, double) |
iid | double fn(int32_t, int32_t, double) |
idi | double fn(int32_t, double, int32_t) |
idid | double fn(int32_t, double, int32_t, double) |
ss | int32_t fn(const char*, const char*) |
s | double fn(const char*) |