diff options
Diffstat (limited to 'test/ipa/shared_test.cpp')
-rw-r--r-- | test/ipa/shared_test.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ipa/shared_test.cpp b/test/ipa/shared_test.cpp new file mode 100644 index 00000000..4e5c976c --- /dev/null +++ b/test/ipa/shared_test.cpp @@ -0,0 +1,12 @@ +#include <libcamera/ipa/ipa_module_info.h> + +namespace libcamera { + +extern "C" { +const struct libcamera::IPAModuleInfo ipaModuleInfo = { + "It's over nine thousand!", + 9001, +}; +}; + +}; /* namespace libcamera */ |