1 /* w32lib.h - Posix emulation layer for Sylpheed (Claws)
3 * This file is part of w32lib.
5 * w32lib is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * w32lib is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * The code has been taken from the package
19 * http://claws.sylpheed.org/win32/sylpheed/w32lib-dev-2004.2.3.0.zip
20 * on 2005-11-17 by Werner Koch <wk@gnupg.org>. There are no regular
21 * copyright notices but the file version.rc from the ZIP archive
24 * #define FILEVER "2004.2.3.0\0"
25 * #define PRODVER "2004.2.3\0"
28 * VALUE "FileDescription", "Posix emulation layer for Sylpheed (Claws)\0"
29 * VALUE "FileVersion", FILEVER
30 * VALUE "ProductVersion", PRODVER
31 * VALUE "LegalCopyright", "GPL\0"
32 * VALUE "CompanyName", "GNU / Free Software Foundation\0"
33 * VALUE "ProductName", "w32lib\0"
35 * Along with the fact that Sylpheed is under the GPL we can assume
36 * that this code is under the GPL. No author information or
37 * changelogs have been found.
38 * Files taken form the package are:
39 * w32_dirent.c w32_reg.c w32_stat.c w32_stdlib.c w32_time.c w32_wait.c
40 * w32_gettext.c w32_signal.c w32_stdio.c w32_string.c w32_unistd.c
45 2007-05-21 Werner Koch <wk@g10code.com>
47 * src/common/w32_account.c: New.
49 * src/common/w32lib.h: Undef "interface".
51 2005-11-17 Werner Koch <wk@g10code.com>
53 Add boilerplate text to all files and explain legal status.
55 * w32_reg.c: Replaced g_free and g_strdup by regular C functions.
56 (get_content_type_from_registry_with_ext): Ditto.
57 * w32_dirent.c (readdir): Ditto.
59 (closedir): Reformatted.
60 (readdir): Reformatted, replaced use of g_strdup_printf and other
61 g-style malloc function by regular ones. Use DIR structure from mingw.
62 * w32lib.h: Don't define finddata_t for mingw. Replaced replacement
63 DIR structure by the one form mingw. Allocate filename in dirent
64 statically to match the defintion ussed by mingw.
65 * w32_reg.c (read_w32_registry_string): Return error for invalid root
80 #define MINGW32_VERSION (__MINGW32_MAJOR_VERSION * 100 \
81 + __MINGW32_MINOR_VERSION)
87 /* Mingw32 3.4.4 defines interface to struct and thus breaks our own
88 use of that symbol. Undef it here. */
89 #if defined(_BASETYPS_H) && defined(interface)
97 typedef long int off_t;
99 typedef unsigned char u_char;
100 #endif /* __MINGW32__ */
101 typedef unsigned int uid_t;
105 #define S_IRUSR _S_IREAD
106 #define S_IWUSR _S_IWRITE
107 #define S_IXUSR _S_IEXEC
108 #define S_IRWXU (_S_IREAD|_S_IWRITE|_S_IEXEC)
109 #endif /* __MINGW32__ */
113 #define SIGPIPE _S_IFIFO
117 #define __S_ISTYPE(mode, mask) (((mode) & _S_IFMT) == (mask))
119 #define S_ISFIFO(mode) __S_ISTYPE((mode), _S_IFIFO)
120 #define S_ISDIR(mode) __S_ISTYPE((mode), _S_IFDIR)
121 #define S_ISREG(mode) __S_ISTYPE((mode), _S_IFREG)
122 #endif /* __MINGW32__ */
126 int strcasecmp( const char *s1, const char *s2 );
128 int strncasecmp( const char *s1, const char *s2, size_t n );
132 typedef void * HANDLE;
134 #ifndef _FINDDATA_T_DEFINED
135 typedef unsigned long _fsize_t; /* Could be 64 bits for Win32 */
138 time_t time_create; /* -1 for FAT file systems */
139 time_t time_access; /* -1 for FAT file systems */
144 #endif /* !_FINDDATA_T_DEFINED */
148 unsigned short d_reclen;
149 unsigned short d_namlen;
150 char d_name[FILENAME_MAX];
155 struct _finddata_t dd_dta;
156 struct dirent dd_dir;
162 #endif /* !__MINGW32__ */
165 DIR *opendir( const char *name );
166 int closedir( DIR *dir );
167 struct dirent *readdir( DIR *dir );
169 #if defined (__MINGW32__) && MINGW32_VERSION < 312
177 int lstat( const char *file_name, struct stat *buf );
180 pid_t waitpid( pid_t pid, int *status, int options );
183 #if ! defined (__MINGW32__) || MINGW32_VERSION < 312
184 int gettimeofday( struct timeval *tv, struct timezone *tz );
188 uid_t getuid( void );
189 int setpgid( pid_t pid, pid_t pgid );
190 pid_t getppid( void );
192 unsigned int sleep( unsigned int seconds );
193 int link( const char *oldpath, const char *newpath );
196 long int random( void );
197 void srandom( unsigned int seed );
198 int truncate( const char *path, off_t length );
201 int kill( pid_t pid, int sig );
204 FILE *popen( const char *command, const char *type );
205 int pclose( FILE *stream );
207 /*** w32_account.c ***/
208 int w32_is_administrator (void);
211 int write_w32_registry_string( char *parent, char *section, char *value, char *data );
212 int write_w32_registry_dword( char *parent, char *section, char *value, int data );
213 char *read_w32_registry_string( char *parent, char *section, char *key );
214 char *get_content_type_from_registry_with_ext( char *ext );
217 /* Simulate thread-safe versions of some functions. */
218 #define gmtime_r(time, resultp) gmtime (time)
219 #define localtime_r(time, resultp) localtime (time)
220 #define asctime_r(time, buffer) asctime (time)
221 #define ctime_r(time, buffer) ctime (time)