mfplat: Read queue subscriber within the critical section.
[wine/zf.git] / tools / winegcc / utils.h
blob9c70011a90fdad4489cc4d2dcf1753241d549039
1 /*
2 * Useful functions for winegcc
4 * Copyright 2000 Francois Gouget
5 * Copyright 2002 Dimitrie O. Paun
6 * Copyright 2003 Richard Cohen
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #ifndef __GNUC__
25 #define __attribute__(X)
26 #endif
28 #ifndef DECLSPEC_NORETURN
29 # if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
30 # define DECLSPEC_NORETURN __declspec(noreturn)
31 # elif defined(__GNUC__)
32 # define DECLSPEC_NORETURN __attribute__((noreturn))
33 # else
34 # define DECLSPEC_NORETURN
35 # endif
36 #endif
38 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
40 enum target_cpu
42 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
45 enum target_platform
47 PLATFORM_UNSPECIFIED,
48 PLATFORM_APPLE,
49 PLATFORM_ANDROID,
50 PLATFORM_SOLARIS,
51 PLATFORM_WINDOWS,
52 PLATFORM_MINGW,
53 PLATFORM_CYGWIN
56 void DECLSPEC_NORETURN error(const char* s, ...);
58 void* xmalloc(size_t size);
59 void* xrealloc(void* p, size_t size);
60 char *xstrdup( const char *str );
61 char* strmake(const char* fmt, ...) __attribute__((__format__ (__printf__, 1, 2 )));
62 int strendswith(const char* str, const char* end);
64 typedef struct {
65 size_t maximum;
66 size_t size;
67 const char** base;
68 } strarray;
70 strarray* strarray_alloc(void);
71 strarray* strarray_dup(const strarray* arr);
72 void strarray_free(strarray* arr);
73 void strarray_add(strarray* arr, const char* str);
74 void strarray_del(strarray* arr, unsigned int i);
75 void strarray_addall(strarray* arr, const strarray* from);
76 strarray* strarray_fromstring(const char* str, const char* delim);
77 char* strarray_tostring(const strarray* arr, const char* sep);
79 typedef enum {
80 file_na, file_other, file_obj, file_res, file_rc,
81 file_arh, file_dll, file_so, file_def, file_spec
82 } file_type;
84 char* get_basename(const char* file);
85 void create_file(const char* name, int mode, const char* fmt, ...);
86 file_type get_file_type(const char* filename);
87 file_type get_lib_type(enum target_platform platform, strarray* path, const char *library,
88 const char *suffix, char** file);
89 const char *find_binary( const strarray* prefix, const char *name );
90 int spawn(const strarray* prefix, const strarray* arr, int ignore_errors);
92 extern int verbose;