[go: up one dir, main page]

File: romfile.h

package info (click to toggle)
seabios 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,348 kB
  • sloc: ansic: 52,658; asm: 1,850; cpp: 1,826; python: 850; yacc: 604; makefile: 550; perl: 416; lex: 363; sh: 287
file content (21 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __ROMFILE_H
#define __ROMFILE_H

#include "types.h" // u32

// romfile.c
struct romfile_s {
    struct romfile_s *next;
    char name[128];
    u32 size;
    int (*copy)(struct romfile_s *file, void *dest, u32 maxlen);
};
void romfile_add(struct romfile_s *file);
struct romfile_s *romfile_findprefix(const char *prefix, struct romfile_s *prev);
struct romfile_s *romfile_find(const char *name);
void *romfile_loadfile(const char *name, int *psize);
u64 romfile_loadint(const char *name, u64 defval);

void const_romfile_add_int(char *name, u32 value);

#endif // romfile.h