repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1014: Enable horizontal scrolling with the mouse wheel by pressing Ctrl.
[cinelerra_cv/ct.git]
/
cinelerra
/
jpegwrapper.h
blob
09869cb3d7685e2b68896ec665f4474be8210365
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