Subversion Repositories Kolibri OS

Rev

Rev 9811 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9811 Rev 9812
Line 1... Line 1...
1
#ifndef _DIR_H_
1
#ifndef _DIR_H_
2
#define _DIR_H_
2
#define _DIR_H_
Line 3... Line 3...
3
 
3
 
Line 4... Line 4...
4
#include 
4
#include 
5
 
5
 
6
extern char* _FUNC(getcwd)(char* buf, unsigned size);
6
DLLAPI char* getcwd(char* buf, unsigned size);
7
extern void _FUNC(setcwd)(const char* cwd);
7
DLLAPI void setcwd(const char* cwd);
Line 8... Line 8...
8
extern int _FUNC(rmdir)(const char* dir);
8
DLLAPI int rmdir(const char* dir);
9
extern int _FUNC(mkdir)(const char* dir);
9
DLLAPI int mkdir(const char* dir);