Good Morning!

I have some code done in C. I'm building it using Visual C++, but there are some errors like:

Error 1 error C2054: expected '(' to follow 'SHARED_FUNCTION'
Error 2 error C2085: 'le16ToHost' : not in formal parameter list


The function is declared like this:

SHARED_FUNCTION WORD le16ToHost( BYTE * src );

There's any problem with the way i'm declaring de function? Shared Functions are different in Visual C++?

Best regards.