Stubs.cs 865 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading;
  4. using System.Runtime.InteropServices;
  5. namespace Urho {
  6. [StructLayout (LayoutKind.Sequential)]
  7. public partial struct ProfilerBlock {
  8. IntPtr block;
  9. }
  10. public enum UrhoObjectFlag {
  11. Empty
  12. }
  13. public interface ISerializer {
  14. IntPtr Handle { get; }
  15. }
  16. public interface IDeserializer {
  17. IntPtr Handle { get; }
  18. }
  19. [StructLayout(LayoutKind.Sequential)]
  20. public unsafe partial struct WorkItem
  21. {
  22. [DllImport(Consts.NativeImport, CallingConvention=CallingConvention.Cdecl)]
  23. internal static extern IntPtr WorkItem_WorkItem();
  24. public WorkItem(IntPtr p)
  25. {
  26. }
  27. }
  28. [StructLayout(LayoutKind.Sequential)]
  29. public unsafe partial struct RefCount
  30. {
  31. [DllImport(Consts.NativeImport, CallingConvention=CallingConvention.Cdecl)]
  32. internal static extern IntPtr RefCount_RefCount();
  33. }
  34. }