Ejemplo n.º 1
0
 public static int FreeLibrary(IntPtr handle)
 {
     return(Common.OSTest.IsWindows()
         ? Windows.DLClose(handle) ? 0 : 1
         : Common.OSTest.IsRunningOnMac() ? OSX.DLClose(handle) : Linux.DLClose(handle));
 }