Add a missing include to make commit f061b67 work on Win32.
[claws.git] / src / common / w32lib.h
1 /* w32lib.h  - Posix emulation layer for Sylpheed (Claws)
2  *
3  * This file is part of w32lib.
4  *
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.
9  *
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.
14  *
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/>.
17  *
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
22  * claims:
23  *
24  *     #define FILEVER "2004.2.3.0\0"
25  *     #define PRODVER "2004.2.3\0"
26  *
27  *     [...]
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"
34  *
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
41  */
42
43 /* Changes are:
44
45 2007-05-21  Werner Koch  <wk@g10code.com>
46
47         * src/common/w32_account.c: New.
48
49         * src/common/w32lib.h: Undef "interface".
50
51 2005-11-17  Werner Koch  <wk@g10code.com>
52
53         Add boilerplate text to all files and explain legal status.
54
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. 
58         (opendir): 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
66         key.
67
68   */
69
70
71 #ifndef _W32LIB_H_
72 #define _W32LIB_H_
73
74 #include <windows.h>
75 #include <io.h>
76 #include <stdio.h>
77
78 #ifdef __MINGW32__
79 #include <_mingw.h>
80 #define MINGW32_VERSION (__MINGW32_MAJOR_VERSION * 100 \
81                          + __MINGW32_MINOR_VERSION)
82 #include <wchar.h>
83 #include <dirent.h>
84 #include <sys/time.h>
85 #endif
86
87 #include <glib/gstdio.h>
88
89 /* Mingw32 3.4.4 defines interface to struct and thus breaks our own
90    use of that symbol.  Undef it here. */
91 #if defined(_BASETYPS_H) && defined(interface) 
92 #undef interface
93 #endif
94
95
96 /* types */
97 /*** ??? ***/
98 #ifndef __MINGW32__
99 typedef long int off_t;
100 typedef int pid_t;
101 typedef unsigned char u_char;
102 #endif /* __MINGW32__ */
103 typedef unsigned int uid_t;
104
105 #ifndef __MINGW32__
106 /*** stat ***/
107 #define S_IRUSR _S_IREAD
108 #define S_IWUSR _S_IWRITE
109 #define S_IXUSR _S_IEXEC
110 #define S_IRWXU (_S_IREAD|_S_IWRITE|_S_IEXEC)
111 #endif /* __MINGW32__ */
112
113
114 /* (signal?) */
115 #define SIGPIPE _S_IFIFO
116
117
118 /* (directory) */
119 #define __S_ISTYPE(mode, mask)  (((mode) & _S_IFMT) == (mask))
120 #ifndef __MINGW32__
121 #define S_ISFIFO(mode)  __S_ISTYPE((mode), _S_IFIFO)
122 #define S_ISDIR(mode)   __S_ISTYPE((mode), _S_IFDIR)
123 #define S_ISREG(mode)   __S_ISTYPE((mode), _S_IFREG)
124 #endif /* __MINGW32__ */
125
126 /* functions */
127 /*** str ***/
128 int strcasecmp( const char *s1, const char *s2 );
129
130 int strncasecmp( const char *s1, const char *s2, size_t n );
131
132 /*** dir ***/
133 #ifndef __MINGW32__
134 typedef void * HANDLE;
135
136 #ifndef _FINDDATA_T_DEFINED
137 typedef unsigned long _fsize_t; /* Could be 64 bits for Win32 */
138 struct _finddata_t {
139     unsigned    attrib;
140     time_t      time_create;    /* -1 for FAT file systems */
141     time_t      time_access;    /* -1 for FAT file systems */
142     time_t      time_write;
143     _fsize_t    size;
144     char        name[260];
145 };
146 #endif /* !_FINDDATA_T_DEFINED */
147
148 struct dirent {
149         long d_ino;
150         unsigned short d_reclen;
151         unsigned short d_namlen;
152         char d_name[FILENAME_MAX];
153 };
154
155 typedef struct
156 {
157         struct _finddata_t      dd_dta;
158         struct dirent           dd_dir;
159         long                    dd_handle;
160         int                     dd_stat;
161         char                    dd_name[1];
162 } DIR;
163
164 #endif /* !__MINGW32__ */
165
166
167 DIR *opendir( const char *name );
168 int closedir( DIR *dir );
169 struct dirent *readdir( DIR *dir );
170
171 #if defined (__MINGW32__) && MINGW32_VERSION < 312
172 struct timezone {
173   int tz_minuteswest;
174   int tz_dsttime;
175 };
176 #endif
177
178 /*** stat ***/
179 int lstat( const char *file_name, GStatBuf *buf );
180
181 /*** sys/wait ***/
182 pid_t waitpid( pid_t pid, int *status, int options );
183
184 /*** sys/time ***/
185 #if ! defined (__MINGW32__) || MINGW32_VERSION < 312
186 int gettimeofday( struct timeval *tv, struct timezone *tz );
187 #endif
188
189 /*** unistd ***/
190 int setpgid( pid_t pid, pid_t pgid );
191 pid_t getppid( void );
192 pid_t fork( void );
193 unsigned int sleep( unsigned int seconds );
194
195 /*** stdlib ***/
196 long int random( void );
197 void srandom( unsigned int seed );
198 int truncate( const char *path, off_t length );
199
200 /*** signal ***/
201 int kill( pid_t pid, int sig );
202
203 /*** stdio ***/
204 FILE *popen( const char *command, const char *type );
205 int pclose( FILE *stream );
206
207 /*** w32_account.c ***/
208 int w32_is_administrator (void);
209
210 /*** misc ***/
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 );
215
216 #endif