private void TestLicense()
        {
            int      hr;
            ProtType pType = ProtType.Free;
            int      pDate;

            // Not implemented
            hr = m_xc.GetCurrLicenseExpDate(pType, out pDate);
        }
        private void TestGetCurrLicenseExpDate()
        {
            int      hr;
            ProtType p = ProtType.Once;
            int      p2;

            // Not implemented (per docs)
            hr = m_ft.GetCurrLicenseExpDate(p, out p2);
            //DsError.ThrowExceptionForHR(hr);
        }
Exemple #3
0
			public static extern int mprotect(UIntPtr addr, UIntPtr length, ProtType prot);
Exemple #4
0
			public static extern UIntPtr mmap(UIntPtr addr, UIntPtr length, ProtType prot, MapType flags, int fd, IntPtr offset);
Exemple #5
0
 public static extern int mprotect(UIntPtr addr, UIntPtr length, ProtType prot);
Exemple #6
0
 public static extern UIntPtr mmap(UIntPtr addr, UIntPtr length, ProtType prot, MapType flags, int fd, IntPtr offset);