int WINAPI BarCdvw(LPSTR szIn,LPINT ni, LPSTR szFilename);
- creates text for Universal Barcode Font using the current default barcode characteristics and writes text to file szFilename
Declared for C as
int WINAPI BarCdvw(LPSTR szIn, LPINT ni, LPSTR szFilename);
where szIn is a pointer to a string containing the text
which is to be converted into the barcode;
ni is the number of characters in
the string (or 0 – in which case the string may not contain NULL
characters),
szFilename is a pointer to a string which contains the fully
qualified pathname of a file to receive the string of characters which represent
the barcode when rendered in the PDF font.
Returns the number of characters written to file, or 0 if
function fails.
Basic declaration
Private Declare Function BarCdvw Lib "dlunif" (ByVal szIn
As String, ByRef n As Long, _
ByVal szfname As String) As Long
More: