Advertisement
waliedassar

Template Wow64Log.dll

Jan 25th, 2013
835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.83 KB | None | 0 0
  1. //http://waleedassar.blogspot.com
  2. //http://www.twitter.com/waleedassar
  3.  
  4. //---------------Template Wow64Log.Dll------------------//
  5. #include "stdafx.h"
  6. #include "windows.h"
  7.  
  8. #pragma comment(linker,"/FIXED:NO")
  9. #pragma comment(linker,"/BASE:0x10000000")
  10.  
  11.  
  12. extern "C"
  13. {
  14.    _declspec(dllexport) int Wow64LogInitialize()
  15.    {
  16.         return 0;
  17.    }
  18.  
  19.     _declspec(dllexport) void Wow64LogSystemService(void*)
  20.    {
  21.        return;
  22.    }
  23.    //StringType=1 means that any strings in pArguments are ANSI.
  24.    //StringType=2 means that any strings in pArguments are UNICODE.
  25.    _declspec(dllexport) void Wow64LogMessageArgList(unsigned long StringType, char* pFormatString,
  26.                                                     void* pArguments)
  27.    {
  28.        return;
  29.    }
  30.  
  31.    _declspec(dllexport) void Wow64LogTerminate()
  32.    {
  33.        return;
  34.    }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement