~jazzva/fakenes/ubuntu

« back to all changes in this revision

Viewing changes to src/include/config.h

  • Committer: Sasa Bodiroza
  • Date: 2007-08-15 05:37:49 UTC
  • Revision ID: jazzva@gmail.com-20070815053749-76l0xj66tzgt290p
Upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* FakeNES - A free, portable, Open Source NES emulator.
 
2
 
 
3
   config.h: Declarations for configuration wrapper.
 
4
 
 
5
   Copyright (c) 2001-2006, FakeNES Team.
 
6
   This is free software.  See 'LICENSE' for details.
 
7
   You must read and accept the license prior to use. */
 
8
 
 
9
#ifndef CONFIG_H_INCLUDED
 
10
#define CONFIG_H_INCLUDED
 
11
#include "common.h"
 
12
#ifdef __cplusplus
 
13
extern "C" {
 
14
#endif
 
15
 
 
16
void load_config (void);
 
17
void save_config (void);
 
18
 
 
19
#ifdef __cplusplus
 
20
}
 
21
#endif
 
22
#endif   /* !CONFIG_H_INCLUDED */
 
23