2010-03-17 02:55:39 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AMIGA_MISC_H
|
|
|
|
#define AMIGA_MISC_H
|
2016-04-26 01:11:55 +03:00
|
|
|
|
2014-11-08 22:40:23 +03:00
|
|
|
#include <exec/types.h>
|
2014-01-26 03:00:22 +04:00
|
|
|
|
2016-04-26 01:11:55 +03:00
|
|
|
#include "utils/errors.h"
|
|
|
|
|
2014-05-27 02:43:36 +04:00
|
|
|
extern struct gui_file_table *amiga_file_table;
|
2014-11-11 02:29:28 +03:00
|
|
|
struct Window;
|
2014-05-27 02:43:36 +04:00
|
|
|
|
2016-04-26 01:11:55 +03:00
|
|
|
/**
|
|
|
|
* Warn the user of an event.
|
|
|
|
*
|
2016-05-06 00:41:03 +03:00
|
|
|
* \param[in] warning A warning looked up in the message translation table
|
2016-04-26 01:11:55 +03:00
|
|
|
* \param[in] detail Additional text to be displayed or NULL.
|
|
|
|
* \return NSERROR_OK on success or error code if there was a
|
|
|
|
* faliure displaying the message to the user.
|
|
|
|
*/
|
|
|
|
nserror amiga_warn_user(const char *warning, const char *detail);
|
|
|
|
|
2015-01-11 02:10:05 +03:00
|
|
|
void *ami_misc_allocvec_clear(int size, UBYTE value);
|
2016-01-21 03:08:49 +03:00
|
|
|
|
|
|
|
/* Itempool cross-compatibility */
|
|
|
|
APTR ami_misc_itempool_create(int size);
|
|
|
|
void ami_misc_itempool_delete(APTR pool);
|
|
|
|
APTR ami_misc_itempool_alloc(APTR pool, int size);
|
|
|
|
void ami_misc_itempool_free(APTR pool, APTR item, int size);
|
|
|
|
|
2012-05-07 19:06:48 +04:00
|
|
|
char *translate_escape_chars(const char *s);
|
2014-11-11 00:59:51 +03:00
|
|
|
void ami_misc_fatal_error(const char *message);
|
2016-05-01 16:00:47 +03:00
|
|
|
int32 amiga_warn_user_multi(const char *body,
|
2014-11-11 00:59:51 +03:00
|
|
|
const char *opt1, const char *opt2, struct Window *win);
|
2010-03-17 02:55:39 +03:00
|
|
|
#endif
|
2014-11-11 00:59:51 +03:00
|
|
|
|