summaryrefslogtreecommitdiffstats
path: root/common/list.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-06-30 01:01:19 +0000
committerjsorg71 <jsorg71>2005-06-30 01:01:19 +0000
commit79557c9cc60103021b3bf3e36418587246fa83d3 (patch)
tree918658d87bed6da6643dc1c816d3fea10ec10807 /common/list.h
parent992dbfa7b3fa568ee480aa3fe3242084d33c518f (diff)
downloadxrdp-proprietary-79557c9cc60103021b3bf3e36418587246fa83d3.tar.gz
xrdp-proprietary-79557c9cc60103021b3bf3e36418587246fa83d3.zip
call painter funcs, not orders
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h24
1 files changed, 16 insertions, 8 deletions
diff --git a/common/list.h b/common/list.h
index c0c7b060..46e82cb3 100644
--- a/common/list.h
+++ b/common/list.h
@@ -31,13 +31,21 @@ struct list
int auto_free;
};
-struct list* list_create(void);
-void list_delete(struct list* self);
-void list_add_item(struct list* self, long item);
-long list_get_item(struct list* self, int index);
-void list_clear(struct list* self);
-int list_index_of(struct list* self, long item);
-void list_remove_item(struct list* self, int index);
-void list_insert_item(struct list* self, int index, long item);
+struct list*
+list_create(void);
+void
+list_delete(struct list* self);
+void
+list_add_item(struct list* self, long item);
+long
+list_get_item(struct list* self, int index);
+void
+list_clear(struct list* self);
+int
+list_index_of(struct list* self, long item);
+void
+list_remove_item(struct list* self, int index);
+void
+list_insert_item(struct list* self, int index, long item);
#endif