mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
648 B
30 lines
648 B
//
|
|
// LoadImage.c
|
|
//
|
|
// routines to load and decomress a graphics file using a MS Office
|
|
// graphic import filter.
|
|
//
|
|
// writen for Plus! 05/24/95
|
|
// ToddLa
|
|
//
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++ */
|
|
#endif /* __cplusplus */
|
|
|
|
//
|
|
// LoadDIBFromFile
|
|
//
|
|
// load a image file using a image import filter.
|
|
//
|
|
LPBITMAPINFOHEADER LoadDIBFromFile(LPCTSTR szFileName);
|
|
void FreeDIB(LPBITMAPINFOHEADER lpbi);
|
|
|
|
//
|
|
// GetFilterInfo
|
|
//
|
|
BOOL GetFilterInfo(int i, LPTSTR szName, UINT cbName, LPTSTR szExt, UINT cbExt, LPTSTR szHandler, UINT cbHandler);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|