2003-12-04 03:01:39 +01:00
|
|
|
/*
|
|
|
|
* winetest definitions
|
|
|
|
*
|
|
|
|
* Copyright 2003 Dimitrie O. Paun
|
|
|
|
* Copyright 2003 Ferenc Wagner
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-12-04 03:01:39 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINETESTS_H
|
|
|
|
#define __WINETESTS_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
void fatal (const char* msg);
|
|
|
|
void warning (const char* msg);
|
|
|
|
void xprintf (const char *fmt, ...);
|
2004-01-15 02:48:05 +01:00
|
|
|
char *vstrmake (size_t *lenp, va_list ap);
|
|
|
|
char *strmake (size_t *lenp, ...);
|
2005-04-18 11:54:24 +02:00
|
|
|
int goodtagchar (char c);
|
|
|
|
const char *findbadtagchar (const char *tag);
|
2003-12-04 03:01:39 +01:00
|
|
|
|
|
|
|
int send_file (const char *name);
|
|
|
|
|
2008-07-10 17:45:22 +02:00
|
|
|
extern HANDLE logfile;
|
|
|
|
|
2004-01-15 02:48:05 +01:00
|
|
|
/* GUI definitions */
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2009-02-17 18:51:43 +01:00
|
|
|
#ifndef __WINE_ALLOC_SIZE
|
|
|
|
#define __WINE_ALLOC_SIZE(x)
|
|
|
|
#endif
|
2009-05-17 13:28:23 +02:00
|
|
|
void *heap_alloc (size_t len) __WINE_ALLOC_SIZE(1);
|
|
|
|
void *heap_realloc (void *op, size_t len) __WINE_ALLOC_SIZE(2);
|
|
|
|
char *heap_strdup( const char *str );
|
|
|
|
void heap_free (void *op);
|
2009-02-17 18:51:43 +01:00
|
|
|
|
2004-01-15 02:48:05 +01:00
|
|
|
enum report_type {
|
|
|
|
R_STATUS = 0,
|
|
|
|
R_PROGRESS,
|
|
|
|
R_STEP,
|
|
|
|
R_DELTA,
|
2005-03-31 17:22:41 +02:00
|
|
|
R_TAG,
|
2004-01-15 02:48:05 +01:00
|
|
|
R_DIR,
|
|
|
|
R_OUT,
|
|
|
|
R_WARNING,
|
2004-02-19 05:12:42 +01:00
|
|
|
R_ERROR,
|
|
|
|
R_FATAL,
|
|
|
|
R_ASK,
|
|
|
|
R_TEXTMODE,
|
|
|
|
R_QUIET
|
2004-01-15 02:48:05 +01:00
|
|
|
};
|
|
|
|
|
2005-04-11 18:10:01 +02:00
|
|
|
#define MAXTAGLEN 20
|
2005-03-31 17:22:41 +02:00
|
|
|
extern char *tag;
|
2010-02-06 10:21:22 +01:00
|
|
|
extern char *email;
|
2010-06-22 19:36:08 +02:00
|
|
|
extern BOOL aborting;
|
2005-03-31 17:22:41 +02:00
|
|
|
int guiAskTag (void);
|
2010-02-06 10:21:22 +01:00
|
|
|
int guiAskEmail (void);
|
2004-01-15 02:48:05 +01:00
|
|
|
int report (enum report_type t, ...);
|
|
|
|
|
2003-12-04 03:01:39 +01:00
|
|
|
#endif /* __WINETESTS_H */
|