9 lines
230 B
C#
9 lines
230 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace CppModuleDemo;
|
|
|
|
public static class Delegates
|
|
{
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
public delegate void ModifyComplexObject(ref ExampleComplexObject obj);
|
|
} |