RetroArch/pkg/apple/JITSupport.h
warmenhoven 295e5f0682
JIT support in iOS (#15224)
* Use AltKit to try to enable JIT on iOS

* libretro: Add API to check JIT availability on iOS
2023-04-26 01:55:37 +02:00

19 lines
331 B
C

//
// JITSupport.h
// RetroArchiOS
//
// Created by Yoshi Sugawara on 9/25/21.
// Copyright © 2021 RetroArch. All rights reserved.
//
#ifndef JITSupport_h
#define JITSupport_h
#include <stdbool.h>
bool jb_has_debugger_attached(void);
bool jb_enable_ptrace_hack(void);
void jb_start_altkit(void);
#endif /* JITSupport_h */