// Token: 0x0600025F RID: 607 RVA: 0x0000F090 File Offset: 0x0000D290
 private static global::System.Collections.Generic.List <global::System.IntPtr> GetChildWindows(global::System.IntPtr parent)
 {
     global::System.Collections.Generic.List <global::System.IntPtr> list = new global::System.Collections.Generic.List <global::System.IntPtr>();
     global::System.Runtime.InteropServices.GCHandle gchandle             = global::System.Runtime.InteropServices.GCHandle.Alloc(list);
     try
     {
         global::VRGIN.Native.WindowsInterop.Win32Callback callback = new global::VRGIN.Native.WindowsInterop.Win32Callback(global::VRGIN.Native.WindowManager.EnumWindow);
         global::VRGIN.Native.WindowsInterop.EnumChildWindows(parent, callback, global::System.Runtime.InteropServices.GCHandle.ToIntPtr(gchandle));
     }
     finally
     {
         bool isAllocated = gchandle.IsAllocated;
         if (isAllocated)
         {
             gchandle.Free();
         }
     }
     return(list);
 }
Exemple #2
0
 public static extern bool EnumChildWindows(global::System.IntPtr parentHandle, global::VRGIN.Native.WindowsInterop.Win32Callback callback, global::System.IntPtr lParam);