Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2066 in orxonox.OLD for orxonox/branches/chris/src/ini_parser.h


Ignore:
Timestamp:
Jul 3, 2004, 5:36:35 PM (21 years ago)
Author:
chris
Message:

orxonox/branches/chris: Implemented CommandNode (Keyboard handling), created some functions to convert key names to identifyers and vice versa, ensured it compiles (when compiled spereately) added a header to hold global message structures

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/chris/src/ini_parser.h

    r2065 r2066  
    99#define INI_PARSER_H
    1010
    11 #include "stdincl.h"
     11#include <stdio.h>
     12#include <strings.h>
     13#include <stdlib.h>
    1214
    1315#define PARSELINELENGHT 512
     
    2325  ~IniParser ();
    2426 
    25   char* getVar( char* name, char* section, char* defvalue);
    26         int openFile( char* name);
    27   int getSection( char* section);
    28   int nextVar( char* name, char* value);
     27  char* get_var( char* name, char* section, char* defvalue);
     28        int open_file( char* name);
     29  int get_section( char* section);
     30  int next_var( char* name, char* value);
    2931};
    3032
Note: See TracChangeset for help on using the changeset viewer.