| 1645 | |
| 1646 | template<int nth> |
| 1647 | static OfxStatus |
| 1648 | pluginMainNth(const char *action, |
| 1649 | const void *handle, |
| 1650 | OfxPropertySetHandle inArgs, |
| 1651 | OfxPropertySetHandle outArgs) |
| 1652 | { |
| 1653 | return pluginMain(nth, action, handle, inArgs, outArgs); |
| 1654 | } |
| 1655 | |
| 1656 | #define NTHFUNC(nth) \ |
| 1657 | case nth: \ |
nothing calls this directly
no test coverage detected