regedit: Update the listview path when renaming a treeview node.
[wine.git] / tools / winegcc / utils.h
blob536fb2d2f97190110320ac71b144185d2dc3ca11
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 enum target_cpu
40 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
43 enum target_platform
45 PLATFORM_UNSPECIFIED,
46 PLATFORM_APPLE,
47 PLATFORM_ANDROID,
48 PLATFORM_SOLARIS,
49 PLATFORM_WINDOWS,
50 PLATFORM_CYGWIN
53 void error(const char* s, ...) DECLSPEC_NORETURN;
55 void* xmalloc(size_t size);
56 void* xrealloc(void* p, size_t size);
57 char *xstrdup( const char *str );
58 char* strmake(const char* fmt, ...) __attribute__((__format__ (__printf__, 1, 2 )));
59 int strendswith(const char* str, const char* end);
61 typedef struct {
62 size_t maximum;
63 size_t size;
64 const char** base;
65 } strarray;
67 strarray* strarray_alloc(void);
68 strarray* strarray_dup(const strarray* arr);
69 void strarray_free(strarray* arr);
70 void strarray_add(strarray* arr, const char* str);
71 void strarray_del(strarray* arr, unsigned int i);
72 void strarray_addall(strarray* arr, const strarray* from);
73 strarray* strarray_fromstring(const char* str, const char* delim);
74 char* strarray_tostring(const strarray* arr, const char* sep);
76 typedef enum {
77 file_na, file_other, file_obj, file_res, file_rc,
78 file_arh, file_dll, file_so, file_def, file_spec
79 } file_type;
81 char* get_basename(const char* file);
82 void create_file(const char* name, int mode, const char* fmt, ...);
83 file_type get_file_type(const char* filename);
84 file_type get_lib_type(enum target_platform platform, strarray* path, const char *library,
85 const char *suffix, char** file);
86 int spawn(const strarray* prefix, const strarray* arr, int ignore_errors);
88 extern int verbose;