I've created both a static lib and an EXE file (which uses the static lib), but when I open up the EXE in IDA pro, the exports are listed in the EXE as well.
I know they should be exported in the .lib itself, but why are they showing up as exports in the EXE too?
EDIT: Here is an export/import (they are in separate header files)
Here is the export:
#define NC_LIBEXPORT(a) extern "C" __declspec(dllexport) a __cdecl
NC_LIBEXPORT(VOID) rol8(unsigned char* a, unsigned char b);
and the import:
extern "C" VOID rol8(unsigned char* a, unsigned char b);