Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

std.h 218B

12345678910111213141516
  1. #pragma once
  2. #include "macros.h"
  3. #ifdef CLAP_HAS_CXX11
  4. # include <cstdint>
  5. #else
  6. # include <stdint.h>
  7. #endif
  8. #ifdef __cplusplus
  9. # include <cstddef>
  10. #else
  11. # include <stddef.h>
  12. # include <stdbool.h>
  13. #endif