diff --git a/common/editor/func.cpp b/common/editor/func.cpp index bbd97fa67..8a11476e5 100644 --- a/common/editor/func.cpp +++ b/common/editor/func.cpp @@ -37,11 +37,6 @@ static int func_size = 0; static int initialized = 0; static int func_params[MAX_PARAMS]; -int func_howmany() -{ - return func_size; -} - void func_init( const FUNCTION * funtable, int size ) { if (!initialized) @@ -100,11 +95,6 @@ int (*func_nget( int func_number, int * numparams, const char **name ))(void) return NULL; } -void func_set_param( int n, int value ) -{ - func_params[n] = value; -} - int func_get_param( int n ) { return func_params[n]; diff --git a/common/include/func.h b/common/include/func.h index fded1528f..5b71f9f57 100644 --- a/common/include/func.h +++ b/common/include/func.h @@ -33,9 +33,7 @@ typedef struct { void func_init( const FUNCTION * funtable, int size ); void func_close(); int (*func_get( char * name, int * numparams ))(void); -int func_howmany(); int (*func_nget( int func_number, int * numparams, const char **name ))(void); -void func_set_param( int n, int value ); int func_get_param( int n ); int func_get_index( char * name );