1
0

compat-helpers.h 409 B

1234567891011121314151617
  1. #pragma once
  2. enum source_type {
  3. GAME_CAPTURE,
  4. WINDOW_CAPTURE_BITBLT,
  5. WINDOW_CAPTURE_WGC,
  6. };
  7. struct compat_result {
  8. char *message;
  9. enum obs_text_info_type severity;
  10. };
  11. extern struct compat_result *check_compatibility(const char *win_title, const char *win_class, const char *exe,
  12. enum source_type type);
  13. extern void compat_result_free(struct compat_result *res);
  14. extern void compat_json_free();