I have traveled the code in this repo and I want to add delegate* support.
typedef int (*fnAdd)(int,int);
struct S{
fnAdd pfnAdd;
};
generates
struct S
{
delegate* unmanaged[Cdelc]<int,int,int> pfnAdd;
}
I found that there is already an implementation of delegate pointers here, but it is not for function pointers, but for functions. And it doesn't seem to be used. Any tips on implementing this?
I have traveled the code in this repo and I want to add delegate* support.
generates
I found that there is already an implementation of delegate pointers here, but it is not for function pointers, but for functions. And it doesn't seem to be used. Any tips on implementing this?