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
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
jpegwrapper.h
blob
07912293bb8ea1e800f487d8a7d40207bac84aad
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
/*
18
// Local Variables:
19
// mode: C++
20
// c-file-style: "linux"
21
// End:
22
*/