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