QR_Encode.h 380 B

123456789101112131415161718
  1. #ifndef QR_ENCODE_H__
  2. #define QR_ENCODE_H__
  3. #include <stdbool.h>
  4. typedef struct{
  5. unsigned char **data; //QRCODE二维数据
  6. unsigned int size; //QRCODE二维大小
  7. }QR_OUT;
  8. /*
  9. lpsSource:需要生成QRCODE的数据信?
  10. qrout:生成的QRCODE信息,只有在返回true时有?
  11. return:true 成功,false失败
  12. */
  13. bool EncodeData(char *lpsSource, QR_OUT *qrout);
  14. #endif