stb_include_file function
Load the file 'filename' and do include-processing on the string therein. note that 'filename' is opened directly; 'path_to_includes' is not used. To free the return value, pass it to free()
Implementation
@ffi.Native<
ffi.Pointer<ffi.Char> Function(
ffi.Pointer<ffi.Char>,
ffi.Pointer<ffi.Char>,
ffi.Pointer<ffi.Char>,
ffi.Pointer<ffi.Char>,
)
>()
external ffi.Pointer<ffi.Char> stb_include_file(
ffi.Pointer<ffi.Char> filename,
ffi.Pointer<ffi.Char> inject,
ffi.Pointer<ffi.Char> path_to_includes,
ffi.Pointer<ffi.Char> error,
);