include: Add IPreviewHandler* interfaces.
[wine.git] / tools / winegcc / utils.h
blob63bd7b218e7855af960753f584226022c42b4496
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
23 #include "../tools.h"
25 #ifndef DECLSPEC_NORETURN
26 # if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
27 # define DECLSPEC_NORETURN __declspec(noreturn)
28 # elif defined(__GNUC__)
29 # define DECLSPEC_NORETURN __attribute__((noreturn))
30 # else
31 # define DECLSPEC_NORETURN
32 # endif
33 #endif
35 void DECLSPEC_NORETURN error(const char* s, ...);
37 typedef enum {
38 file_na, file_other, file_obj, file_res, file_rc,
39 file_arh, file_dll, file_so, file_def, file_spec
40 } file_type;
42 void create_file(const char* name, int mode, const char* fmt, ...);
43 file_type get_file_type(const char* filename);
44 file_type get_lib_type(struct target target, struct strarray path, const char *library,
45 const char *prefix, const char *suffix, char** file);
46 const char *find_binary( struct strarray prefix, const char *name );
47 int spawn(struct strarray prefix, struct strarray arr, int ignore_errors);
49 extern int verbose;