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.

9 lines
225 B

  1. #include <stdio.h>
  2. #include <windows.h>
  3. #include "capture.h"
  4. HRESULT WriteBitmapDataToJPEGFile(char * filename, CaptureBitmapData *bm)
  5. {
  6. // Function needs to be re-written to use gdi or gdi+ methods
  7. return E_FAIL;
  8. }