CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
unix_fs_file.cxh
1#include <cx/fs/fileobj.cxh>
2
3// A file on the unix filesystem, backed by a file descriptor.
4// Created by fsOpen(); everything else goes through the File interface.
5class FSFileUnix extends File {
6 int fd;
7 bool locked;
8
9 factory create(int fd, bool locked);
10 destroy();
11}