Show
Ignore:
Timestamp:
05/06/08 15:51:54 (7 months ago)
Author:
mwhitworth
Message:

Add to module structure.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/hybrid/include/module.h

    r427 r436  
    88 
    99#include <elf.h> 
     10#include <llist.h> 
    1011 
    1112struct Module 
    1213{ 
     14        char* name; 
     15        struct ListHead next; 
     16 
     17        /* ELF specific information. */ 
    1318        DWORD loadAddr; 
    1419        DWORD textAddr; 
    1520 
    16         /* ELF specific information. */ 
    1721        struct ElfSectionHeader* sectionHeaders; 
    1822 
     
    2226        int symTableSize; 
    2327}; 
     28 
     29#endif 
    2430 
    2531struct KernelSymbol 
     
    4147 
    4248#endif 
    43  
    44 #endif