-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Description
I am wondering if native interoperability is possible for this kind of native(s)?
native MyNative(id, output[], size = sizeof output, ...);
native MyNativeImpl(id, AmxString:output, size, ...) = MyNative;
stock String:MyNativeStr(Template:id, ...)
{
new String:output = str_new_buf(8192);
MyNativeImpl(id, output, 8192, ...); // I know this is invalid
return output;
}
Metadata
Metadata
Assignees
Labels
No labels