NativeTrackableExtension.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. * NRSDK is distributed in the hope that it will be usefull
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal.Experimental
  10. {
  11. //using System;
  12. //using System.Runtime.InteropServices;
  13. //internal partial class NativeTrackableExtension
  14. //{
  15. // public void GainMarkerDataStart()
  16. // {
  17. // NativeApi.NRTrackableImageStart(m_NativeInterface.SessionHandle);
  18. // }
  19. // public void GainMarkerDataStop()
  20. // {
  21. // NativeApi.NRTrackableImageStop(m_NativeInterface.SessionHandle);
  22. // }
  23. // private partial struct NativeApi
  24. // {
  25. // [DllImport(NativeConstants.NRNativeLibrary)]
  26. // public static extern NativeResult NRTrackableImageStart(UInt64 session_handle);
  27. // [DllImport(NativeConstants.NRNativeLibrary)]
  28. // public static extern NativeResult NRTrackableImageStop(UInt64 session_handle);
  29. // }
  30. //}
  31. }