Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //http://waleedassar.blogspot.com
- //http://www.twitter.com/waleedassar
- //---------------Template Wow64Log.Dll------------------//
- #include "stdafx.h"
- #include "windows.h"
- #pragma comment(linker,"/FIXED:NO")
- #pragma comment(linker,"/BASE:0x10000000")
- extern "C"
- {
- _declspec(dllexport) int Wow64LogInitialize()
- {
- return 0;
- }
- _declspec(dllexport) void Wow64LogSystemService(void*)
- {
- return;
- }
- //StringType=1 means that any strings in pArguments are ANSI.
- //StringType=2 means that any strings in pArguments are UNICODE.
- _declspec(dllexport) void Wow64LogMessageArgList(unsigned long StringType, char* pFormatString,
- void* pArguments)
- {
- return;
- }
- _declspec(dllexport) void Wow64LogTerminate()
- {
- return;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement