Changes between Version 2 and Version 3 of Component/Loader


Ignore:
Timestamp:
Feb 27, 2009, 11:12:58 AM (15 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Component/Loader

    v2 v3  
    66== Usage ==
    77
    8  * {{{Loader( const std::string &filename )}}}
     8 * {{{Loader( const std::string &filename, ... )}}}
    99
    10 Creates a new Loader, capable of loading `filename`.
     10Creates a new Loader, capable of loading all the filenames passed.
    1111
    1212 * {{{void load( void *buffer, uintptr_t address, size_t length )}}}
     
    3030
    3131Handlers are tried in order, and if all fails, error is raised.
     32
     33Current existing handlers are:
     34 * [wiki:Component/Loader/ElfFileLoader Elf File Loader] (for ELF images)
     35 * [wiki:Component/Loader/PlainFileLoader Plain File Loader] (a blob loader)