initial checkin of yaulw (locally)

This commit is contained in:
Donald Duck
2016-02-15 12:32:26 -05:00
commit 857eda29e3
115 changed files with 27392 additions and 0 deletions

19
Win32/Wininet.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace Yaulw.Win32
{
/// <remark>
/// User32.dll Entry Points * http://pinvoke.net/ *
/// </remark>
public static class Wininet
{
[DllImport("wininet", CharSet = CharSet.Auto)]
extern public static bool InternetGetConnectedState(ref Definitions.ConnectionStatusEnum flags, int dw);
}
}