Pinoy Extreme Hackerz
After Register or Log in just click login on the right corner of the chatbox to activate it. Thank you!

________________________________________________________

Pagkatapos mag register o mag log in ay pindutin sa kanang bahagi ng ating chabox ang login upang ito ay aktibahin. Salamat!
Pinoy Extreme Hackerz
After Register or Log in just click login on the right corner of the chatbox to activate it. Thank you!

________________________________________________________

Pagkatapos mag register o mag log in ay pindutin sa kanang bahagi ng ating chabox ang login upang ito ay aktibahin. Salamat!
Pinoy Extreme Hackerz
Would you like to react to this message? Create an account in a few clicks or log in to continue.


▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ☆Welcome To Pinoy Extreme Hackerz☆ █ ▇ ▆ ▅ ▄ ▃ ▂ ▁
 
HomeLatest imagesRegisterLog in
Announcement ! All registered users here, Please go to our new site @ http://pinoyextremehackerz.tk/ ..Thank you
This Webiste is Closed

 

 [TUTORIAL] BUILDING A DLL WITH PICTURES

Go down 
AuthorMessage
๖ۣۜмΣтαℓωσℓƒ
Administrator
Administrator
๖ۣۜмΣтαℓωσℓƒ


Posts : 17
Join date : 20/09/2013

[TUTORIAL] BUILDING A DLL WITH PICTURES Empty
PostSubject: [TUTORIAL] BUILDING A DLL WITH PICTURES   [TUTORIAL] BUILDING A DLL WITH PICTURES EmptyFri Sep 20, 2013 5:38 pm

Required Tools: Microsoft Visual Studio (any version)

Steps:

1. Open Microsoft Visual Studio and select Create : Project.
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs2.postimg.org%2Fuc7boac09%2Fimage

2. In new Project select Visual C++ --> Win32 --> Win32 Project --> Put Your DLL Name then click OK.
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs9.postimg.org%2F7aec5etzj%2Fimage

3. In Win32 Application Wizard - Your DLL Name, click NEXT.
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs13.postimg.org%2Fvhhnm04o7%2Fimage

4. Then select DLL --> Empty Project and click FINISH.
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs12.postimg.org%2Foyw7cftv1%2Fimage

5. Now in Solution Explorer Menu (Note: If you can't see your Solution Explorer Menu just select VIEW --> Solution Explorer or Ctrl + Alt + L). Right click Source Files --> Add --> New Item.
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs17.postimg.org%2F9falifri7%2Fimage

6. Then in New Item Menu select Code --> C++ File (.cpp) --> Enter Name (like: Main or Base) --> then click Add.
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs23.postimg.org%2Fkn9c675rv%2Fimage

7. After adding your Item (Main.cpp).. time to paste the Main DLL source code.
Code:
#include <windows.h>

BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
   switch(dwReason)
   {
      case DLL_PROCESS_ATTACH:

      // If your DLL is attached or injected
      // Call your code here

      break;

      case DLL_PROCESS_DETACH:

      break;
   }
   return TRUE;
}
[TUTORIAL] BUILDING A DLL WITH PICTURES Browse.php?u=http%3A%2F%2Fs24.postimg.org%2F7z7zj1x1h%2Fimage

8. And that's it Wink.. Next Tutorial Building a DLL.
Back to top Go down
 
[TUTORIAL] BUILDING A DLL WITH PICTURES
Back to top 
Page 1 of 1
 Similar topics
-
» [TUTORIAL] GETTING STARTED WITH C++
» [Tutorial] How to register to the D cafe :)
» [TUTORIAL] HOW TO MAKE INJECTOR

Permissions in this forum:You cannot reply to topics in this forum
Pinoy Extreme Hackerz :: Programming :: C++-
Jump to: