~hidravfx-dev-team/hidravfx/trunk

« back to all changes in this revision

Viewing changes to src/options.h

  • Committer: Laszlo.simon
  • Date: 2011-03-06 20:47:02 UTC
  • Revision ID: git-v1:6d6b3876e16b630ca1e50f5104ef12e7c2ea32b6
Distorsions added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define OPTIONS_H_
22
22
 
23
23
/** Initialise options. */
24
 
extern void opt_init(int argc, char *argv[]);
 
24
extern int opt_init(int argc, char *argv[]);
25
25
 
26
26
/** Gets option string for key */
27
27
extern char* opt_get(char* key);
28
28
 
 
29
/** Gets option in different format  */
 
30
float opt_getf(char* key);
 
31
long int opt_getl(char* key);
 
32
 
29
33
/** Free memory allocated by opt. */
30
34
extern void opt_free(void);
31
35