How I compile dll with Mingw?
thanks
Compile Injection with Mingw 1.0
Moderators: Murderator+, Murderator
1)I have compiled the project with VC++ 6.0 but I have found the following error:
Linking...
Creating library Debug/Injection.lib and object Debug/Injection.exp
injection.obj : error LNK2001: unresolved extern symbol __imp__sndPlaySoundA@8
Debug/Injection.dll : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
The question is like makes to resolve it?
2)I do not find sources of script.dll on http://sourceforge.net/. where
I can find them just?
Linking...
Creating library Debug/Injection.lib and object Debug/Injection.exp
injection.obj : error LNK2001: unresolved extern symbol __imp__sndPlaySoundA@8
Debug/Injection.dll : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
The question is like makes to resolve it?
2)I do not find sources of script.dll on http://sourceforge.net/. where
I can find them just?
for the first question:LordX wrote:1)I have compiled the project with VC++ 6.0 but I have found the following error:
Linking...
Creating library Debug/Injection.lib and object Debug/Injection.exp
injection.obj : error LNK2001: unresolved extern symbol __imp__sndPlaySoundA@8
Debug/Injection.dll : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
The question is like makes to resolve it?
2)I do not find sources of script.dll on http://sourceforge.net/. where
I can find them just?
i think you forgot including the Winmm.lib library into the project
the same it happens with meLordX wrote:1)I have compiled the project with VC++ 6.0 but I have found the following error:
Linking...
Creating library Debug/Injection.lib and object Debug/Injection.exp
injection.obj : error LNK2001: unresolved extern symbol __imp__sndPlaySoundA@8
Debug/Injection.dll : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
how I make to include the library of Winmm.lib in the project?Lem wrote:i think you forgot including the Winmm.lib library into the project
in vc++ 6Henry wrote:the same it happens with meLordX wrote:1)I have compiled the project with VC++ 6.0 but I have found the following error:
Linking...
Creating library Debug/Injection.lib and object Debug/Injection.exp
injection.obj : error LNK2001: unresolved extern symbol __imp__sndPlaySoundA@8
Debug/Injection.dll : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
how I make to include the library of Winmm.lib in the project?Lem wrote:i think you forgot including the Winmm.lib library into the project
menu project
add to project -> files
set filter to lib and search for winmm.lib
or you can try by using preprocessor directives.