Print  Email 
 

Bar2Dqrf ()

 - creates text for the QR Code font and returns the text in szOut

Declared for C as

int WINAPI Bar2Dqrf(LPINT code, LPSTR szIn,LPINT n, LPINT mode, LPINT sec, LPSTR szOut);

where code specifies the barcode type required (0 for QR Code, 1 for Micro QR Code)
szIn is a pointer to a string containing the text which is to be converted into the barcode;
n is normally 0; otherwise it may be the number of characters in the string if the string is to be interpreted as a byte stream,
mode specifies the mode, sec is the security level and szOut is a pointer to a string which will receive the characters to be rendered in the QR (AZT) font.

The security level has allowed values of 0 – 3 for all modes for QR Code, or 0 – 2 for Micro QR Code.

Basic declaration

Private Declare Function Bar2Dqrf Lib "dqrdf" (ByRef c As Long, ByVal szIn As String, ByRef n As Long, ByRef mo As Long, ByRef sec As Long, ByRef szOut As String) As Long

 

More:

Bar2Dqrc ()