Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3238 in orxonox.OLD for orxonox/branches/sound/src/keynames.h


Ignore:
Timestamp:
Dec 20, 2004, 2:42:54 AM (21 years ago)
Author:
bensch
Message:

orxonox/branches: updated branches: buerli, nico, sound. And moved bezierTrack to old.bezierTrack. Conflicts resolved in a usefull order.
Conflics mostly resolved in favor of trunk
merge.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/sound/src/keynames.h

    r2551 r3238  
    55                Converts strings to SDLK/SDL_BUTTON values and vice versa
    66*/
     7#ifndef _KEYNAMES_H
     8#define _KEYNAMES_H
     9
    710
    811#ifdef __WIN32__
     
    1013#endif
    1114
     15#ifndef __APPLE__
    1216#include <SDL/SDL.h>
     17#else
     18#include <SDL.h>
     19#endif
    1320
    1421/**
     
    1724        \return an int containing the SDL identifier of the mouse button or -1 if the button name is not valid
    1825*/
    19 int buttonname_to_SDLB( char* name);
     26int buttonnameToSDLB( char* name);
    2027
    2128/**
     
    2431        \return a pointer to a string containing the name of the mouse button
    2532*/
    26 char* SDLB_to_buttonname( int button);
     33char* SDLBToButtonname( int button);
    2734
    2835/**
     
    3138        \return the SDLK sym of the named key or -1 if the key name is not valid
    3239*/
    33 int keyname_to_SDLK( char* name);
     40int keynameToSDLK( char* name);
    3441
    3542/**
     
    3845        \return a pointer to a string containig the name of the key
    3946*/
    40 char* SDLK_to_keyname( int key);
     47char* SDLKToKeyname( int key);
    4148
     49
     50#endif /* _KEYNAMES_H */
Note: See TracChangeset for help on using the changeset viewer.