Advertisement
Nattack

Untitled

Feb 26th, 2018
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. // ConsoleApplication1.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "windows.h"
  6. #include <iostream>
  7.  
  8. using namespace std;
  9.  
  10. int main()
  11. {
  12.     HINSTANCE hGetProcIDDLL = LoadLibrary(L"kernel32.dll");
  13.     if (hGetProcIDDLL != NULL)
  14.         cout << "loaded DLL" << endl;
  15.     else cout << "did not load DLL" << endl;
  16.     cin.get();
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement