43 lines
827 B
C
43 lines
827 B
C
#ifndef __SF_COMMMNG_H__
|
|
#define __SF_COMMMNG_H__
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif
|
|
#include "sf_type.h"
|
|
#include "sf_param_common.h"
|
|
//#include "UIInfo/UIInfo.h"
|
|
|
|
|
|
|
|
SINT32 sf_sem_init(SF_CHAR *pathname,SINT32 *psemid);
|
|
|
|
SINT32 sf_sem_down(SINT32 semid, SINT32 who);
|
|
|
|
SINT32 sf_sem_up(SINT32 semid, SINT32 who);
|
|
|
|
SINT32 sf_sem_deinit(SINT32 semid);
|
|
|
|
SINT32 sf_share_mem_file_init(void);
|
|
SINT32 sf_share_mem_file_down(UINT32 to, SINT32 param);
|
|
SINT32 sf_share_mem_file_deinit(void);
|
|
|
|
SINT32 sf_share_mem_customer_update(void);
|
|
SINT32 sf_share_mem_customer_down(UINT32 to);
|
|
|
|
SINT32 sf_share_mem_customer_deinit(void);
|
|
|
|
SINT32 sf_share_mem_hd_update(void);
|
|
SINT32 sf_share_mem_hd_down(UINT32 to);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|
|
|