Moonlight-XboxOG latest
Moonlight Xbox OG is a port of the Moonlight Game Streaming client to the original Xbox console.
share.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <errno.h>
9#include <wchar.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#ifndef SH_DENYNO
17 #define SH_DENYNO 0
18#endif
19
29 static inline int _wsopen(const wchar_t *path, int oflag, int shflag, int pmode) {
30 (void) path;
31 (void) oflag;
32 (void) shflag;
33 (void) pmode;
34 errno = ENOSYS;
35 return -1;
36 }
37
47 static inline int _sopen(const char *path, int oflag, int shflag, int pmode) {
48 (void) path;
49 (void) oflag;
50 (void) shflag;
51 (void) pmode;
52 errno = ENOSYS;
53 return -1;
54 }
55
56#ifdef __cplusplus
57}
58#endif
#define ENOSYS
Error code used when an FFmpeg compatibility operation is unsupported.
Definition ffmpeg_compat.h:25