mirror of https://github.com/tongzx/nt5src
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.
24 lines
510 B
24 lines
510 B
//
|
|
// SaveImage.c
|
|
//
|
|
// routines to save and compress a graphics file using a MS Office
|
|
// graphic export filter.
|
|
//
|
|
#include "image.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++ */
|
|
#endif /* __cplusplus */
|
|
|
|
//
|
|
// SaveDIBToFile
|
|
//
|
|
// save an image file using an installed image export filter.
|
|
//
|
|
BOOL SaveDIBToFile( LPCTSTR szFileName,
|
|
REFGUID guidFormatID,
|
|
CBitmapObj * pBitmap );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|