aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/File.c
blob: d12a8fbedfdcb238bc618f0bc4fdd318025c2fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <BH/IO.h>


BH_IO *BH_FileNew(const char *path,
                  int mode,
                  int *result)
{
    BH_UNUSED(path);
    BH_UNUSED(mode);

    if (result)
        *result = BH_NOIMPL;

    return NULL;
}


int BH_IOIsFile(BH_IO *device)
{
    return 0;
}