42 lines
825 B
C
42 lines
825 B
C
#ifndef __SF_MESSAGE_QUEUE_H__
|
|
#define __SF_MESSAGE_QUEUE_H__
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif
|
|
#include <sf_type.h>
|
|
#include "UIInfo/UIInfo.h"
|
|
|
|
#if 0
|
|
typedef struct sf_MESSAGE_Buf_S
|
|
{
|
|
long mtype;
|
|
SINT32 cmdId;
|
|
SINT32 s32Wait;
|
|
SINT32 arg1;
|
|
SINT32 arg2;
|
|
SINT32 arg3;
|
|
}SF_MESSAGE_BUF_S;
|
|
|
|
SINT32 sf_com_message_app_init(void);
|
|
SINT32 sf_com_message_send_to_app(SF_MESSAGE_BUF_S *pMessageBuf);
|
|
SINT32 sf_com_message_recv_from_app(SF_MESSAGE_BUF_S *pMessageBuf);
|
|
|
|
|
|
SINT32 sf_com_message_cardv_init(void);
|
|
SINT32 sf_com_message_send_to_cardv(SF_MESSAGE_BUF_S *pMessageBuf);
|
|
SINT32 sf_com_message_recv_from_cardv(SF_MESSAGE_BUF_S *pMessageBuf);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|