Yes, you will need to recompile your app because by adding functions to the dll, you broke binary compatibility. You might start getting errors in your main exe even before main is called. If you were to call the functions in the dll dynamically however ( using LoadLibrary and GetProcAddress ), you would not need to recompile your exe
Bilal Durrani
NI
Bilal Durrani
NI