Kamis, 14 Oktober 2010

Cara membuat Program Berbasis atau berformat DLL (dll)

Tahap Pembuatan format program dll yaitu :

1.instal C++ 2008
Tutorial Dengan gambar

Gambar 1.
Enlarge this imageReduce this image Click to see fullsize

Gambar 2.
Enlarge this imageReduce this image Click to see fullsize


Code Wallhack :// Hook structure.
SDLLHook D3DHook =
{
"DDRAW.DLL",
false, NULL, // Default hook disabled, NULL function pointer.
{
{ "DirectDrawCreate", MyDirectDrawCreate },
{ NULL, NULL }
}
};

BOOL APIENTRY DllMain( HINSTANCE hModule,
DWORD fdwReason,
LPVOID lpReserved )
{
// When initializing....
if ( fdwReason == DLL_PROCESS_ATTACH )
{
hDLL = hModule;

// We don't need thread notifications for what we're doing.
// Thus, get rid of them, thereby eliminating some of the
// overhead of this DLL
DisableThreadLibraryCalls( hModule );

// Only hook the APIs if this is the Everquest process.
GetModuleFileName( GetModuleHandle( NULL ),
Work,
sizeof(Work) );
PathStripPath( Work );

if ( stricmp( Work, "myhooktarget.exe" ) == 0 )
HookAPICalls( &D3DHook );
}

return TRUE;
}



Ok selesai sampai disini dan maaf Sebelumnya jika koment2 kalian tidak terbalas,. Ane sungguh minta Maaf yah! .. Moga teman2 mengerti dah Amin ..

Credit : Kira03 - MPGH #

\/
Dan ini Tambahan dari saya mengenai PointBlank dear / Versi Rusia untuk bagi yang belum tahu,, silahkan tinggal klik >>> Rusia

Tidak ada komentar:

Posting Komentar