LoadPCXIntoBitmap

#include "BIPCX.H"

 

HBITMAP CALLBACK LoadPCXIntoBitmap( LPTSTR lpszFileName,
int far     *lpiError)

Description

LoadPCXIntoBitmap() loads the specified PCX file into a device dependent bitmap.

Parameters

LPTSTR

lpszFileName;

Pointer to a null-terminated character string that names the PCX file path to be opened.

int far

*lpiError;

Error value if NULL is returned.

Additional Information

This example shows how to use the dll when loading statically including the header file. Otherwise if the dll is loaded dynamically, for further information read the “About the difference of static and dynamic library loading” section of the manual.

Return values

Handle of the bitmap. On error it is NULL and lpiError is set.

Programming notes

None.

Requirements

Header :     Declared in BiPCX.h; include BiPCX.h.

Library :    Use BiPCX.lib.

DLLs :       BiPCX.dll.

Code example

None at present.