Esempio n. 1
0
 private static extern void EncodeContainersRespNative(
     IntPtr auth,
     ref ContainersReqNative req,
     uint reqId,
     [MarshalAs(UnmanagedType.U1)] bool isGranted,
     IntPtr userData,
     FfiResultStringCb oCb);
Esempio n. 2
0
 public ContainersReq(ContainersReqNative native)
 {
     App        = native.App;
     Containers = BindingUtils.CopyToObjectList <ContainerPermissions>(native.ContainersPtr, (int)native.ContainersLen);
 }