Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenlist.h
Go to the documentation of this file.
00001 #pragma once 00002 00003 typedef struct entry_struct 00004 { 00005 char *buf; 00006 char *name; 00007 char *path; 00008 size_t ImageBase; 00009 size_t RelBase; 00010 size_t Size; 00011 struct entry_struct *pnext; 00012 } LIST_MEMBER, *PLIST_MEMBER; 00013 00014 typedef struct list_struct 00015 { 00016 PLIST_MEMBER phead; 00017 PLIST_MEMBER ptail; 00018 } LIST, *PLIST; 00019 00020 PLIST_MEMBER entry_lookup(PLIST list, char *name); 00021 PLIST_MEMBER entry_delete(PLIST_MEMBER pentry); 00022 PLIST_MEMBER entry_insert(PLIST list, PLIST_MEMBER pentry); 00023 PLIST_MEMBER cache_entry_create(char *Line); 00024 PLIST_MEMBER sources_entry_create(PLIST list, char *path, char *prefix); 00025 void list_clear(PLIST list); 00026 00027 /* EOF */ Generated on Sun May 27 2012 04:27:26 for ReactOS by
1.7.6.1
|