htop/ListItem.h

43 lines
758 B
C
Raw Normal View History

2006-06-06 20:28:42 +00:00
/* Do not edit this file. It was automatically generated. */
2006-03-04 18:16:49 +00:00
#ifndef HEADER_ListItem
#define HEADER_ListItem
/*
2006-06-06 20:28:42 +00:00
htop - ListItem.h
2010-02-25 02:08:18 +00:00
(C) 2004-2010 Hisham H. Muhammad
2006-03-04 18:16:49 +00:00
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "String.h"
#include "Object.h"
#include "RichString.h"
#include <string.h>
#include "debug.h"
2006-06-06 20:28:42 +00:00
2006-03-04 18:16:49 +00:00
typedef struct ListItem_ {
Object super;
char* value;
int key;
} ListItem;
2006-06-06 20:28:42 +00:00
#ifdef DEBUG
2006-03-04 18:16:49 +00:00
extern char* LISTITEM_CLASS;
#else
#define LISTITEM_CLASS NULL
#endif
2006-03-04 18:16:49 +00:00
2010-02-25 01:43:18 +00:00
ListItem* ListItem_new(const char* value, int key);
2006-03-04 18:16:49 +00:00
2006-06-06 20:28:42 +00:00
void ListItem_append(ListItem* this, char* text);
2006-03-04 18:16:49 +00:00
const char* ListItem_getRef(ListItem* this);
int ListItem_compare(const void* cast1, const void* cast2);
2006-06-06 20:28:42 +00:00
2006-03-04 18:16:49 +00:00
#endif