Move common/ui/keypad.c -> common/ui/keypad.cpp

This commit is contained in:
Kp 2012-11-17 06:14:09 +00:00
parent c2b11da77d
commit 1fdc080c17
3 changed files with 9 additions and 1 deletions

View file

@ -638,7 +638,7 @@ class DXXArchive(DXXCommon):
'ui/gadget.cpp',
'ui/icon.cpp',
'ui/inputbox.cpp',
'ui/keypad.c',
'ui/keypad.cpp',
'ui/keypress.c',
'ui/keytrap.c',
'ui/listbox.c',

View file

@ -16,6 +16,10 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
#ifndef _FUNC_H
#define _FUNC_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
char * name;
int nparams;
@ -31,4 +35,8 @@ void func_set_param( int n, int value );
int func_get_param( int n );
int func_get_index( char * name );
#ifdef __cplusplus
}
#endif
#endif