| 127 | void operator delete( void *) { } |
| 128 | |
| 129 | ExternalPrimitive(void *inProc,int inArgCount,const String &inName) : |
| 130 | mProc(inProc), mArgCount(inArgCount), mName(inName.makePermanent()) |
| 131 | { |
| 132 | functionName = ("extern::cffi "+mName).makePermanent().raw_ptr(); |
| 133 | } |
| 134 | |
| 135 | int __GetType() const HXCPP_OVERRIDE { return vtFunction; } |
| 136 | String __ToString() const HXCPP_OVERRIDE { return mName; } |
nothing calls this directly
no outgoing calls
no test coverage detected