Core Info returns "No information available"

Hi,

I’ve started implementing a core for libretro but while testing the DLL, the Core Information returns no details. I can see the string I have put in the code on the bottom of the GUI but when choosing the core I only see the DLL name.

So I’ve compared one of the working cores with my DLL with CFF Explorer and tried to match as much settings as I could, such as disabling ASLR and NX compatibility. The only thing different is that mine imports MSVCR120.DLL whereas others uses MSVCRT.DLL.

For the time being I’m just trying to communicate with the GUI, i.e. not starting the emulator instance yet, I’ve followed this file as an example https://github.com/libretro/libretro-prboom/blob/master/libretro/libretro.c.

The console of retroarch does not output anything, there doesn’t seem to be any errors happening.

Do you know what could be wrong ?

Environment : RetroArch-v1.0.0.2-64-bit, Windows 8.1, Visual Studio 2013

Thank you.

core info is just a text file with the same name as the core lib: https://github.com/libretro/libretro-su … /dist/info

Great, thanks !