I have a sharedLib called "nimmstaWindows". When I...
# kotlin-native
p
I have a sharedLib called "nimmstaWindows". When I try to execute the binary compiled from this C code:
Copy code
#include "nimmstaWindows_api.h"

int main(int argc, char** argv) {
    nimmstaWindows_ExportedSymbols *lib = nimmstaWindows_symbols();
}
I get the following error message:
Copy code
---------------------------
test.exe - Entry Point Not Found
---------------------------
The procedure entry point nimmstaWindows_symbols could not be located in the dynamic link library C:\Users\Patrick\Documents\nimmsta-shared-lib\test.exe. 
---------------------------
OK   
---------------------------
Does anyone know how to fix this?