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); }
public static extern int mprotect(UIntPtr addr, UIntPtr length, ProtType prot);
public static extern UIntPtr mmap(UIntPtr addr, UIntPtr length, ProtType prot, MapType flags, int fd, IntPtr offset);