https://github.com/justjavac/deno_win32
Wraps some of the most common Win32 API calls using FFI to make them accessible to Deno.
https://github.com/justjavac/deno_win32
deno ffi ui win32 winapi
Last synced: 28 days ago
JSON representation
Wraps some of the most common Win32 API calls using FFI to make them accessible to Deno.
- Host: GitHub
- URL: https://github.com/justjavac/deno_win32
- Owner: justjavac
- License: mit
- Created: 2021-12-17T16:19:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T12:58:38.000Z (almost 3 years ago)
- Last Synced: 2025-04-15T06:38:50.675Z (about 2 months ago)
- Topics: deno, ffi, ui, win32, winapi
- Language: TypeScript
- Homepage: https://deno.land/x/win32
- Size: 29.3 KB
- Stars: 21
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deno_win32
Wraps some of the most common **Win32** API calls using FFI to make them
accessible to Deno.## Usage
Write your apps that use the Windows API directly from Deno, by wrapping common
Win32 APIs using Deno FFI.flags:
- `--allow-ffi`: Requires ffi access to "user32.dll", "kernel32", etc...
- `--unstable`: FFI is unstable feature## Examples
```bash
deno run --allow-ffi --unstable https://deno.land/x/win32/examples/MessageBox.ts
```You will see:

### License
[deno_win32](https://github.com/denoffi/deno_win32) is released under the MIT
License. See the bundled [LICENSE](./LICENSE) file for details.