14 lines
325 B
C
Executable file
14 lines
325 B
C
Executable file
#ifndef CTC_FUNC1_H
|
|
#define CTC_FUNC1_H
|
|
|
|
#include "clib_defs.h"
|
|
|
|
extern "C" {
|
|
int DLL_IMPORT func_new(int type, int n, int lenp, double* p);
|
|
int DLL_IMPORT func_del(int i);
|
|
int DLL_IMPORT func_copy(int i);
|
|
int DLL_IMPORT func_assign(int i, int j);
|
|
double DLL_IMPORT func_value(int i, double t);
|
|
}
|
|
|
|
#endif
|