Source code of Windows XP (NT5)
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

  1. //
  2. // SaveImage.c
  3. //
  4. // routines to save and compress a graphics file using a MS Office
  5. // graphic export filter.
  6. //
  7. #include "image.h"
  8. #ifdef __cplusplus
  9. extern "C" { /* Assume C declarations for C++ */
  10. #endif /* __cplusplus */
  11. //
  12. // SaveDIBToFile
  13. //
  14. // save an image file using an installed image export filter.
  15. //
  16. BOOL SaveDIBToFile( LPCTSTR szFileName,
  17. REFGUID guidFormatID,
  18. CBitmapObj * pBitmap );
  19. #ifdef __cplusplus
  20. }
  21. #endif /* __cplusplus */