Added support for message hook viewer to hook both 32 and 64 bit applications. Fixed filtering on the msg hook viewer Added custom filtering on msg hook viewer Added Process Id targetting on msg hook viewer Added SetMsgHook.exe command line app as an alternative way of starting msg hook viewer.
23 lines
465 B
C
23 lines
465 B
C
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <conio.h>
|
|
|
|
|
|
// TODO: reference additional headers your program requires here
|
|
|
|
#ifndef GLOBAL_VARS_H // header guards
|
|
#define GLOBAL_VARS_H
|
|
|
|
#define MAX_NAME_SIZE 500
|
|
extern TCHAR MSGHOOK_DLL_NAME[MAX_NAME_SIZE];
|
|
|
|
#endif |