-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd_router.h
58 lines (50 loc) · 1.82 KB
/
cmd_router.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Copyright (c) 2013 Wei-Lun Hsu. All Rights Reserved.
*/
/** @file media_player_err.h
*
* @author Wei-Lun Hsu
* @version 0.1
* @date 2013/08/03
* @license
* @description
*/
#ifndef __cmd_router_H_wgqpBFGF_lyo7_HpNc_s9uw_urbCbNsGW4va__
#define __cmd_router_H_wgqpBFGF_lyo7_HpNc_s9uw_urbCbNsGW4va__
#ifdef __cplusplus
extern "C" {
#endif
#include "stdint.h"
#include "stdbool.h"
#include "media_player_err.h"
//=============================================================================
// Constant Definition
//=============================================================================
typedef enum CR_CMD_TYPE_T
{
CR_CMD_TYPE_TO_APP, // send cmd to application layer
CR_CMD_TYPE_TO_DRIVER, // send cmd to driver layer
}CR_CMD_TYPE;
//=============================================================================
// Macro Definition
//=============================================================================
//=============================================================================
// Structure Definition
//=============================================================================
typedef struct CMDROUTER_HANDLE_T
{
uint32_t reserve;
}CMDROUTER_HANDLE;
//=============================================================================
// Global Data Definition
//=============================================================================
//=============================================================================
// Private Function Definition
//=============================================================================
//=============================================================================
// Public Function Definition
//=============================================================================
#ifdef __cplusplus
}
#endif
#endif