BarCodeh2

int WINAPI BarCodeh2(HDC hDC, HANDLE hInstance, LPPOINT lpPt, LPSIZE lpSz, LPLOGFONT lpLf, LPBAR bc);

where hDC is the target device context,

hInstance is the  instance handle of the calling application (may be 0).

LpPt is a pointer to a POINT structure containing the coordinates of the top left hand corner of the required target area  (in the device coordinates) of the device context.

LpSz is a pointer to a SIZE structure containing the x and y extents (in HIMETRIC units - 0.01 mm) of the barcode image required. (Note that this may be altered if an X unit value is specified in the spare element of the barcode structure.)

LpLF is a long pointer to a LOGFONT structure filled with information about the font with which any text will be displayed on the barcode.  The font height will be treated as Points and treated as positive.

Bc is a barcode structure.

 

More:

BarCodeh3