vitasdk
Documentation of the vitasdk
stat.h
Go to the documentation of this file.
1
7#ifndef _PSP2KERN_IO_STAT_H_
8#define _PSP2KERN_IO_STAT_H_
9
10#include <psp2kern/types.h>
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17
25int ksceIoMkdir(const char *dir, SceMode mode);
26
33int ksceIoRmdir(const char *path);
34
43int ksceIoGetstat(const char *file, SceIoStat *stat);
44
54
64int ksceIoChstat(const char *file, SceIoStat *stat, int bits);
65
75int ksceIoChstatByFd(SceUID fd, SceIoStat *stat, int bits);
76
77#ifdef __cplusplus
78}
79#endif
80
81#endif /* _PSP2KERN_IO_STAT_H_ */
82
Structure to hold the status information about a file.
Definition iofilemgr.h:127
int ksceIoGetstatByFd(SceUID fd, SceIoStat *stat)
Get the status of a file descriptor.
int ksceIoGetstat(const char *file, SceIoStat *stat)
Get the status of a file.
int ksceIoMkdir(const char *dir, SceMode mode)
Make a directory file.
int ksceIoChstat(const char *file, SceIoStat *stat, int bits)
Change the status of a file.
int ksceIoChstatByFd(SceUID fd, SceIoStat *stat, int bits)
Change the status of a file descriptor.
int ksceIoRmdir(const char *path)
Remove a directory file.
int SceUID
UIDs are used to describe many different kernel objects.
Definition types.h:90
int SceMode
Mode for I/O functions.
Definition types.h:87