2008-08-03 20:12:01 +04:00
|
|
|
/*
|
2009-03-07 23:52:08 +03:00
|
|
|
* Copyright 2008,2009 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-03 20:12:01 +04:00
|
|
|
*
|
|
|
|
* 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_OBJECT_H
|
|
|
|
#define AMIGA_OBJECT_H
|
|
|
|
|
|
|
|
#include <exec/lists.h>
|
|
|
|
|
2008-09-28 00:55:11 +04:00
|
|
|
enum
|
|
|
|
{
|
2008-11-15 18:28:17 +03:00
|
|
|
AMINS_UNKNOWN,
|
2008-09-28 00:55:11 +04:00
|
|
|
AMINS_CALLBACK,
|
|
|
|
AMINS_WINDOW,
|
|
|
|
AMINS_DLWINDOW,
|
|
|
|
AMINS_LOGINWINDOW,
|
2008-11-15 18:28:17 +03:00
|
|
|
AMINS_TVWINDOW,
|
2008-12-14 02:23:24 +03:00
|
|
|
AMINS_FINDWINDOW,
|
2009-03-07 23:52:08 +03:00
|
|
|
AMINS_HISTORYWINDOW,
|
2009-06-21 02:29:43 +04:00
|
|
|
AMINS_GUIOPTSWINDOW,
|
2009-11-01 17:53:04 +03:00
|
|
|
AMINS_PRINTWINDOW,
|
2011-04-30 23:05:11 +04:00
|
|
|
AMINS_FONT,
|
2011-05-10 02:11:18 +04:00
|
|
|
AMINS_MIME
|
2008-09-28 00:55:11 +04:00
|
|
|
};
|
2008-08-03 20:12:01 +04:00
|
|
|
|
|
|
|
struct nsObject
|
|
|
|
{
|
2011-04-30 23:05:11 +04:00
|
|
|
struct Node dtz_Node;
|
2008-08-03 20:12:01 +04:00
|
|
|
ULONG Type;
|
|
|
|
void *objstruct;
|
|
|
|
ULONG objstruct_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MinList *NewObjList(void);
|
2011-04-30 23:05:11 +04:00
|
|
|
struct nsObject *AddObject(struct MinList *objlist, ULONG otype);
|
2008-08-03 20:12:01 +04:00
|
|
|
void DelObject(struct nsObject *dtzo);
|
2010-10-05 23:14:46 +04:00
|
|
|
void DelObjectNoFree(struct nsObject *dtzo);
|
2008-08-03 20:12:01 +04:00
|
|
|
void FreeObjList(struct MinList *objlist);
|
|
|
|
|
|
|
|
#endif
|