ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

list.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.