comparison packages/services/objloader/current/include/loader_fs.h @ 2243:6fd46febe457

Warnings, cosmetic fixes from Anthony Tonizzo
author gthomas
date Wed, 28 Jun 2006 12:48:46 +0000
parents 662e1b34b811
children 74dbf4c3f2e1
comparison
equal deleted inserted replaced
2242:ccc0f40c3371 2243:6fd46febe457
1 #ifndef __LOADER_FS_H__ 1 #ifndef __LOADER_FS_H__
2 #define __LOADER_FS_H__ 2 #define __LOADER_FS_H__
3 3
4 /* ================================================================= 4 /* =================================================================
5 * 5 *
6 * loader_fs.c 6 * loader_fs.h
7 * 7 *
8 * ================================================================= 8 * =================================================================
9 * ####ECOSGPLCOPYRIGHTBEGIN#### 9 * ####ECOSGPLCOPYRIGHTBEGIN####
10 * ------------------------------------------- 10 * -------------------------------------------
11 * This file is part of eCos, the Embedded Configurable Operating 11 * This file is part of eCos, the Embedded Configurable Operating
41 * ------------------------------------------- 41 * -------------------------------------------
42 * ####ECOSGPLCOPYRIGHTEND#### 42 * ####ECOSGPLCOPYRIGHTEND####
43 * ================================================================= 43 * =================================================================
44 * #####DESCRIPTIONBEGIN#### 44 * #####DESCRIPTIONBEGIN####
45 * 45 *
46 * Author(s): atonizzo@lycos.com 46 * Author(s): Anthony Tonizzo (atonizzo@gmail.com)
47 * Date: 2005-05-13 47 * Date: 2005-05-13
48 * Purpose: 48 * Purpose:
49 * Description: 49 * Description:
50 * 50 *
51 * ####DESCRIPTIONEND#### 51 * ####DESCRIPTIONEND####
52 * 52 *
53 * ================================================================= 53 * =================================================================
54 */ 54 */
55 55
56 size_t cyg_ldr_fs_read( PELF_OBJECT, size_t, size_t, void* ); 56 size_t cyg_ldr_fs_read(PELF_OBJECT, size_t, size_t, void*);
57 cyg_int32 cyg_ldr_fs_seek( PELF_OBJECT, cyg_uint32 ); 57 cyg_int32 cyg_ldr_fs_seek(PELF_OBJECT, cyg_uint32);
58 cyg_int32 cyg_ldr_fs_close( PELF_OBJECT ); 58 cyg_int32 cyg_ldr_fs_close(PELF_OBJECT);
59 PELF_OBJECT cyg_ldr_open_library_fs(char *);
60 void cyg_ldr_close_library_fs(PELF_OBJECT);
59 61
60 #endif // __LOADER_FS_H__ 62 #endif // __LOADER_FS_H__