mirror of
https://github.com/libretro/Mu.git
synced 2026-09-24 15:46:20 +00:00
14 lines
244 B
C
14 lines
244 B
C
#ifndef EMU_FUNCTIONS_H
|
|
#define EMU_FUNCTIONS_H
|
|
|
|
#include <PalmOS.h>
|
|
#include <stdint.h>
|
|
|
|
#include "specs/emuFeatureRegisterSpec.h"/*needed for feature names*/
|
|
|
|
Boolean isEmulator();
|
|
Boolean isEmulatorFeatureEnabled(uint32_t feature);
|
|
|
|
#endif
|
|
|