├── .gitignore ├── LICENSE ├── README.md └── src ├── main.zig └── win32 ├── c.zig ├── lean_and_mean.zig └── psapi.zig /.gitignore: -------------------------------------------------------------------------------- 1 | zig-cache 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoNZooo/zig-win32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoNZooo/zig-win32/HEAD/README.md -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoNZooo/zig-win32/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/win32/c.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoNZooo/zig-win32/HEAD/src/win32/c.zig -------------------------------------------------------------------------------- /src/win32/lean_and_mean.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoNZooo/zig-win32/HEAD/src/win32/lean_and_mean.zig -------------------------------------------------------------------------------- /src/win32/psapi.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoNZooo/zig-win32/HEAD/src/win32/psapi.zig --------------------------------------------------------------------------------