Beispiel #1
0
 int GetValueByName(
     IntPtr self,
     string name,
     out ulong value)
 {
     return(_soshost.GetRegister(name, out value));
 }
Beispiel #2
0
        int GetValueByName(
            IntPtr self,
            string name,
            out UIntPtr value)
        {
            int hr = _soshost.GetRegister(name, out ulong register);

            value = new UIntPtr(register);
            return(hr);
        }