How to export function in my dll project?
SPONSORED LINKS
I am writing a dll file, I need to export a function. I have visual c++ express version. How do I do that?
I searched for documentation, I changed my function into:
__declspec( dllexport ) void function(){
…
…
}
But compile gives me an error "1>LINK : fatal error LNK1168: cannot open …DebugsearchKeywordProcessor.dll for writing"
I don’t understand why…
Thanks.
More here:
How to export function in my dll project?