https://github.com/squeek502/win32-libuv
Example integration of the Libuv event loop with the Win32 message loop
https://github.com/squeek502/win32-libuv
Last synced: 2 months ago
JSON representation
Example integration of the Libuv event loop with the Win32 message loop
- Host: GitHub
- URL: https://github.com/squeek502/win32-libuv
- Owner: squeek502
- License: 0bsd
- Created: 2020-07-23T03:39:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T03:42:11.000Z (almost 5 years ago)
- Last Synced: 2025-01-29T12:32:42.576Z (4 months ago)
- Language: C
- Size: 26.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
win32-libuv
===========Example of integrating the [Libuv](https://github.com/libuv/libuv) event loop with the [Win32 API](https://docs.microsoft.com/en-us/windows/win32/) message loop. Based on the Libuv integration with the Chrome message loop in [Electron](https://github.com/electron/electron).
The relevant integration code can be found in:
- [src/main.c](src/main.c)
- [src/win32uv.h](src/win32uv.h)
- [src/win32uv.c](src/win32uv.c)The other files are just there for the purposes of the demo application:

---
TODO: explain how the integration works