1 Star 3 Fork 1

阿YANG / Win32 API Declarations

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Win32.cs 616 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangjun 提交于 2017-07-10 09:17 . init project
using System;
using System.Runtime.InteropServices;
namespace Win32
{
public struct RECT
{
public int Left;
public int Top;
public int Right;
public int Bottom;
}
public struct POINT
{
public int x;
public int y;
}
public struct SIZE
{
public int cx;
public int cy;
}
public struct FILETIME
{
public int dwLowDateTime;
public int dwHighDateTime;
}
public struct SYSTEMTIME
{
public short wYear;
public short wMonth;
public short wDayOfWeek;
public short wDay;
public short wHour;
public short wMinute;
public short wSecond;
public short wMilliseconds;
}
}
C#
1
https://gitee.com/yj/win32-api-declarations.git
git@gitee.com:yj/win32-api-declarations.git
yj
win32-api-declarations
Win32 API Declarations
master

搜索帮助