14 lines
191 B
C++
14 lines
191 B
C++
#ifndef FFCONV_FFCPP_H
|
|
#define FFCONV_FFCPP_H
|
|
|
|
#include <string>
|
|
|
|
namespace ffcpp {
|
|
|
|
void init();
|
|
void throwIfError(int result, const std::string& description);
|
|
|
|
}
|
|
|
|
#endif //FFCONV_FFCPP_H
|