
Originally Posted by
CanYouDoIt
God Damn it! ANOTHER FUCKING COMPILE ERROR IN WHIT'S COMBINED BASE V2!

My friend tolds me what I need to do, but again, isn't work. I thinking he is a leecher...
Well, this is the error:
Code:
------ Build started: Project: CaBase, Configuration: Debug Win32 ------
Linking...
DirectX.obj : error LNK2019: unresolved external symbol "void * __cdecl DetourCreate(unsigned char *,unsigned char const *,int)" (?DetourCreate@@YAPAXPAEPBEH@Z) referenced in function "public: void __thiscall cDirectx::Hook(void)" (?Hook@cDirectx@@QAEXXZ)
C:\Documents and Settings\Administrador\Desktop\Combined Base v2\CaBase\Debug\CaBase.dll : fatal error LNK1120: 1 unresolved externals
Build log was saved at "file://c:\Documents and Settings\Administrador\Desktop\Combined Base v2\CaBase\Debug\BuildLog.htm"
CaBase - 2 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
/

What should I do?
Now you can flame me, i'm a lazy bitch

first of all you need to show some code in order for us to help you
now let me talk a little bit about linking and external errors
you are getting this error
[php]
DirectX.obj : error LNK2019: unresolved external symbol "void * __cdecl DetourCreate(unsigned char *,unsigned char const *,int)" (?DetourCreate@@YAPAXPAEPBEH@Z) referenced in function "public: void __thiscall cDirectx::Hook(void)" (?Hook@cDirectx@@QAEXXZ)[/php]
you can see from the directx.obj the error is probably in Directx.h or Directx.cpp
now take a look at your functions in that header file "Directx.h"
you should have a function
[php]DetourCreate(unsigned char *,unsigned char const *,int)[/php]
make sure it is not
[php]Directx:

etourCreate(unsigned char *,unsigned char const *,int)//or what ever your class is named [/php]
if it is not keep going
now go to your Directx.cpp
and look for the function
[php]DetourCreate(unsigned char *,unsigned char const *,int)[/php]
This time it should be
[php]Directx:

etourCreate(unsigned char *,unsigned char const *,int)[/php]
if it is keep goin...
Now in your function call your DetourCreate function should be called as the following
[php]Directx.DetourCreate(bla bla bla)//or what ever your class name is[/php]
hope that helped you
/Off topic
am releasing my hack tonight or tomorrow it is gona be awesome
~GodHack2