clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

main.c (238B)


      1 #include <clap/all.h>
      2 
      3 // The purpose of this file is to check that all headers compile
      4 int main(int argc, char **argv) {
      5    (void)argc;
      6    (void)argv;
      7    const clap_version_t m = CLAP_VERSION;
      8    return !clap_version_is_compatible(m);
      9 }