📄 fileio.h
字号:
/* * This source code is a part of coLinux source package. * * Dan Aloni <da-x@colinux.org>, 2003 (c) * * The code is licensed under the GPL. See the COPYING file at * the root directory. * */#ifndef __CO_WINNT_KERNEL_FILEIO_H__#define __CO_WINNT_KERNEL_FILEIO_H__#include <colinux/kernel/monitor.h>#include "ddk.h"extern co_rc_t co_os_file_open(char *pathname, PHANDLE FileHandle, unsigned long open_flags);extern co_rc_t co_os_file_create(char *pathname, PHANDLE FileHandle, unsigned long open_flags, unsigned long file_attribute, unsigned long create_disposition, unsigned long options);extern co_rc_t co_os_file_block_read_write(co_monitor_t *linuxvm, HANDLE file_handle, unsigned long long offset, vm_ptr_t address, unsigned long size, bool_t read);extern co_rc_t co_os_file_close(PHANDLE FileHandle);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -