libzipをwin32に移植中。
とりあえず、ビルドは通ったので要点を整理。
- config.hはconfig.h.inをリネーム
- typedef int ssize_t
- strcasecmpはstricmpで代用
- _getpid
#define getpid _getpid typedef int pid_t;
- S_ISDIR
#ifndef S_ISDIR #define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR)) #endif
libzipをwin32に移植中。
とりあえず、ビルドは通ったので要点を整理。
#define getpid _getpid typedef int pid_t;
#ifndef S_ISDIR #define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR)) #endif