![]() |
![]() |
Gwyddion Library Reference Manual | ![]() |
---|
gwywin32unistdgwywin32unistd — Unistd functions on Win32 |
#define chmod (file, mode) #define getpid () #define mkdir (dir, mode) #define unlink (file) #define S_ISREG (m) #define S_ISDIR (m) #define S_IRUSR #define S_IWUSR #define S_IXUSR #define W_OK
#define chmod(file, mode) _chmod(file, mode)
Macro usable as chmod() on Win32. See its Unix manual page for details.
file : | File name. |
mode : | Permissions to set on file. |
Since 1.5
#define getpid() _getpid()
Macro usable as getpid() on Win32. See its Unix manual page for details.
Since 1.5
#define mkdir(dir, mode) _mkdir(dir)
Macro usable as mkdir() on Win32. See its manual page for details.
dir : | Directory name. |
mode : | Permissions of the newly created directory (ignored on Win32). |
Since 1.5
#define unlink(file) _unlink(file)
Macro usable as unlink() on Win32. See its Unix manual page for details.
file : | File name. |
Since 1.5
<< gwymacros | gwyddion >> |