CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
win_sys_processobj.cxh
1#include <cx/sys/processobj.cxh>
2#include <cx/platform/win.h>
3
4[methodprefix _winprocobj] class WinProcess extends Process {
5 HANDLE h; ///< Native process handle, pins the pid against reuse
6 HANDLE wait; ///< Registered wait from the exit watcher, NULL when not watched
7
8 factory create();
9 destroy();
10}