extern "C" __declspec(dllexport) int Run_RsbbDec(const char* Input_File, int vbr_en, int bitrate, char* ErrMsg);
Change this to:
extern "C" __declspec(dllimport) int Run_RsbbDec(const char* Input_File, int vbr_en, int bitrate, char* ErrMsg);
You should change this function to dllimport since you want to import it in your code from the library. You use dllexport when writing the library stating that the function will be exported to be used when the library is used somewhere else.
Also, if you would like your code to run after you have compiled it you need to copy TRSCompress.dll to where the you have compiled your code.
And make sure that you are implementing the right function. Is the function defined in the same way in the library? Does it return int and has input of those parameters?