Created
April 23, 2018 14:14
-
-
Save Ice3man543/cf1443c9ee1712aaae53f7ee2c4075d4 to your computer and use it in GitHub Desktop.
Revisions
-
Ice3man543 created this gist
Apr 23, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #include <windows.h> #include <stdio.h> int main(int argc, char *argv[]) { printf("\n[*] TestDLL : Test LoadLibraryA Function"); LoadLibrary(argv[1]); printf("\n[-] Done "); getchar(); return 0; }