CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
win_fs_file.cxh
1#include <cx/fs/fileobj.cxh>
2#include <cx/platform/win.h>
3
4// A file on the Windows filesystem, backed by a kernel handle.
5// Created by fsOpen(); everything else goes through the File interface.
6class FSFileWin extends File {
7 HANDLE h;
8
9 factory create(HANDLE h);
10 destroy();
11}