mirror of https://github.com/mono/CppSharp.git
Browse Source
Typedefs of function pointers can be written in two ways: typedef void (*typedefedFuncPtr)(); int f(typedefedFuncPtr fptr); typedef void (typedefedFuncPtr)(); int f(typedefedFuncPtr* fptr); Up until now we only supported the former. Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>pull/890/head
6 changed files with 12 additions and 11 deletions
Loading…
Reference in new issue