SBSPSS/Utils/Scripter/function.h

58 lines
1.2 KiB
C
Raw Normal View History

2000-12-14 23:32:17 +01:00
/*=========================================================================
function.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __FUNCTION_H__
#define __FUNCTION_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __CODEGEN_H__
#include "codegen.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
2000-12-15 21:29:33 +01:00
extern int lookupFunctionName(char *_name);
2000-12-14 23:32:17 +01:00
extern int getFunctionArgCount(int _functionNumber);
2000-12-15 21:29:33 +01:00
extern CTreeNode *getFunctionArgs(int _functionNumber);
2000-12-14 23:32:17 +01:00
/*---------------------------------------------------------------------- */
#endif /* __FUNCTION_H__ */
/*===========================================================================
end */