Home | History | Annotate | Download | only in Windows

Lines Matching defs:HANDLE

1 // Windows/Handle.h

11 HANDLE _handle;
13 operator HANDLE() { return _handle; }
26 void Attach(HANDLE handle) { _handle = handle; }
27 HANDLE Detach()
29 HANDLE handle = _handle;
31 return handle;