| 3 | #include <stddef.h> |
| 4 | |
| 5 | static void CheckFunctionOrder (int expect, int actual, const char* name) { |
| 6 | EXPECT_EQ (expect, actual) << "Wrong function order: " << name; |
| 7 | } |
| 8 | |
| 9 | typedef void (*CheckFunc) (int, int, const char*); |
| 10 | extern "C" void CheckEncoderInterface (ISVCEncoder* p, CheckFunc); |
nothing calls this directly
no outgoing calls
no test coverage detected