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.

37 lines
463 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. test.c
  5. Abstract:
  6. This file contains the main entrypooint
  7. for the TIFF library test program.
  8. Environment:
  9. WIN32 User Mode
  10. Author:
  11. Wesley Witt (wesw) 17-Feb-1996
  12. --*/
  13. #include "test.h"
  14. #pragma hdrstop
  15. VOID
  16. PostProcessTiffFile(
  17. LPTSTR TiffFile
  18. )
  19. {
  20. if (!TiffPostProcess( TiffFile )) {
  21. _tprintf( TEXT("failed to post process the TIFF file\n") );
  22. }
  23. }