32 lines
569 B
C
32 lines
569 B
C
|
|
#ifndef GOOSE_SMV_123_INCLUDED
|
|
#define GOOSE_SMV_123_INCLUDED
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/************************************************************************/
|
|
|
|
#if defined (VXWORKS)
|
|
#define GOOSESMV_INI_NAME "/tffs0/cfg/goose_smv.txt"
|
|
#else
|
|
#define GOOSESMV_INI_NAME "./cfg/goose_smv.txt"
|
|
#endif
|
|
|
|
int goosesmv_init( void );
|
|
|
|
int goosesmv_release( void );
|
|
|
|
//int get_threadid_goosesmv( void );
|
|
int inf_get_logtask_id( void );
|
|
|
|
/************************************************************************/
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|