File: data.h

package info (click to toggle)
fs-uae 3.2.35-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,376 kB
  • sloc: cpp: 257,557; ansic: 121,965; sh: 4,895; makefile: 1,577; python: 446; asm: 275; xml: 10
file content (15 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef FS_DATA_H
#define FS_DATA_H

#ifdef __cplusplus
extern "C" {
#endif

int fs_data_init(const char *app_name, const char *dat_name);
int fs_data_file_content(const char *name, char **data, int *size);

#ifdef __cplusplus
}
#endif

#endif /* FS_DATA_H */