⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dcload-syscalls.h

📁 DC的SEGA_GG模拟器源代码
💻 H
字号:
#ifndef __DCLOAD_SYSCALLS_H__
#define __DCLOAD_SYSCALLS_H__

#define O_RDONLY        0
#define O_WRONLY        1
#define O_RDWR          2

int dcload_link (const char *oldpath, const char *newpath);
int dcload_read (int file, char *ptr, int len);
int dcload_lseek (int file, int ptr, int dir);
int dcload_write ( int file, char *ptr, int len);
int dcload_close (int file);
int dcload_fstat (int file, struct stat *st);
int dcload_open (const char *path, int flags);
int dcload_creat (const char *path, int mode);
int dcload_unlink (const char *path);
void dcload_exit (int status);
int dcload_stat (const char *path, struct stat *st);
int dcload_chmod (const char *path, short mode);
int dcload_utime (const char *path, char *times);
int dcload_chdir (const char *path);
long dcload_time(long *t);
void assign_wrkmem(unsigned char *wrkmem);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -