aboutsummaryrefslogtreecommitdiff
path: root/include/bh/internal/file_win.h
blob: 026d239b6f6273d00f277a1b5490b7ab94a7b172 (plain)
1
2
3
4
5
6
7
8
9
#include <windows.h>

struct bh_file_s
{
    bh_io_t base;
    char *path;
    int mode;
    HANDLE handle;
};