I was wondering, what do the pro's use to compile their .DLL's?
If someone would like to share what they use to compile their DLL's or maybe post a link to a good DLL compiler, that would be awesome ;D
~InsaneCodeZ
I was wondering, what do the pro's use to compile their .DLL's?
If someone would like to share what they use to compile their DLL's or maybe post a link to a good DLL compiler, that would be awesome ;D
~InsaneCodeZ
Your avatar is fitting to your question. Enough said.
ouch man, that was harsh... way to kick a guy in the balls.
Dev C++ i think :)
i heard pbexplorer decompiled dll's
Nothing decompiles DLL's.
The first question, is what language do you plan to use/learn?
Yes dev c++ will compile dll's
So will myass.exe.
The infractor of this post is a InsertinsultingWordHere. Mainly because I seriously renamed the compiler myass.exe... No joke>.> I had 2 weeks of fucking around trying to get DevBlocks to work till I just redownloaded Visual studio 03 + 08
Last edited by Torsen; 25-08-09 at 09:22 PM.
totally fail ?
only use Microsoft Visual Studio C++ 2008 express ;D
Bubbling morons, all of you.
If you want to compile a C/C++ source file to a DLL, you would use any C or C++ compiler, and define it as a DLL. The application must have the DllMain function, or the entry point must be defined via linker settings, or pragma.
Remember, DLL is a Windows-only executable format, using a slightly modified PE structure. Therefore I recommend a Windows-only compiler, such as Microsoft VS.