Skip to content
  • [solved]Use x64 DLL

    General and Desktop x64 dll 64bit
    13
    0 Votes
    13 Posts
    6k Views
    C
    @SGaist @hskoglund @belab @Franckynos Thank you for helping me! You were right, I did not import the symbols. I added this : #ifdef GAME_EXPORTS # define GAME_API __declspec(dllexport) #else # define GAME_API __declspec(dllimport) #endif to my DLL code and now everything works. Have a nice day, you rock! :-)