예제 #1
0
파일: NativeMethods.cs 프로젝트: zzlvff/Eto
 public static IntPtr webkit_web_view_new()
 {
     if (EtoEnvironment.Platform.IsLinux)
     {
         return(NMLinux.webkit_web_view_new());
     }
     else if (EtoEnvironment.Platform.IsMac)
     {
         return(NMMac.webkit_web_view_new());
     }
     else
     {
         return(NMWindows.webkit_web_view_new());
     }
 }