home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / xmovie / jpegwrapper.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  187b  |  17 lines

  1. #ifndef JPEGWRAPPER_H
  2. #define JPEGWRAPPER_H
  3.  
  4. // jpegsrc doesn't work for C++ so wrap it
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #include <jpeglib.h>
  11.  
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15.  
  16. #endif
  17.