⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vcard_gen.h

📁 pbap_server:bluetooth 可供带有PBAP功能bluetooth手机使用
💻 H
字号:
/****************************************************************************

DESCRIPTION
	Interface definition for handling vCard generation functionality

	
FILE
	vcard_gen.h
*/


#ifndef VCARD_GEN_H
#define VCARD_GEN_H

#include "main.h"
#include <pbap_common.h>

/*
	Start downloading a vCard entry
*/
bool vcgGetFirstEntryBuffer(applicationTaskData *pTask, uint16 pEntry, pbap_format_values pFormat);

/*
	Download the next buffer of the vCard Entry
*/
bool vcgGetNextEntryBuffer(applicationTaskData *pTask);

/*
	Clean up from downloading the vCard entry
*/
void vcgCleanupListBuffer(applicationTaskData *pTask);

/*
	Start downloading a complete phonebook
*/
bool vcgGetFirstPhonebookBuffer(applicationTaskData *pTask, pbap_phone_book pBook, uint16 pListStart, pbap_format_values pFormat, uint16 pMaxList);

/*
	Download the next buffer of a complete phonebook
*/
bool vcgGetNextPhonebookBuffer(applicationTaskData *pTask);

#endif /* VCARD_GEN_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -