Bar2Dqrc ()

- creates text for the QR font and copies it to the Windows clipboard

Declared for C as

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

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 Bar2Dqrc Lib "dqrdf" (ByRef c As Long, ByVal szIn As String, ByRef n As Long, ByRef mo As Long, ByRef sec As Long) As Long

 

More:

Bar2Dqrw ()