1234567891011121314151617 |
- #ifndef QR_ENCODE_H__
- #define QR_ENCODE_H__
- #include <stdbool.h>
- typedef struct{
- unsigned char **data; //QRCODE二维数据
- unsigned int size; //QRCODE二维大小
- }QR_OUT;
- /*
- lpsSource:需要生成QRCODE的数据信息
- qrout:生成的QRCODE信息,只有在返回true时有效
- return:true 成功,false失败
- */
- bool EncodeData(char *lpsSource, QR_OUT *qrout);
- #endif
|