I have to modify some code running with the CVI-Adapter of Teststand-3.1. So I've loaded the old project file, did some modifications and rebuild the DLL without problems. But the resulting DLL doesn't work with Testand any more, because it doesn't seem to export it's functions any more.
For example there is a function
void __declspec(dllexport) rfe_dc_init_instruments(tTestData * testData, tTestError * testError)
the DLL target settings for exports are set to "Export What: Symbols Marked for Export"
But when trying to run the teststep which uses that function, it fails with
Details: Could not find function '_ rfe_dc_init_instruments' in DLL (or external module) 'N:\IDZ\RFE\rfe-dc.dll'
Error code -17005: could not find function in library
Any ideas how to fix that ?