Bug 1075966 - ccapp_task.h lacks an include guard. r=bwc

--HG--
extra : rebase_source : 76ea63e7123203f7b1425c99bf4bd27205e5f630
This commit is contained in:
Eric Rahm 2014-10-01 13:56:52 -07:00
Родитель 83dd652135
Коммит a973b182c5
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef __CCAPP_TASK_H__
#define __CCAPP_TASK_H__
#include "sll_lite.h"
//Define app id for ccapp task
@ -18,3 +20,5 @@ typedef struct {
extern void addCcappListener(appListener* listener, int type);
appListener *getCcappListener(int type);
cpr_status_e ccappTaskSendMsg (uint32_t cmd, void *msg, uint16_t len, uint32_t usrInfo);
#endif