mirror of
https://github.com/debauchee/barrier.git
synced 2025-06-14 08:41:41 +02:00
- Fixed line endings - Integ test for file transfer - Fixed crashed problem when log info is larger than 2048 bytes - Fixed compile error caused by std exception (by Feng ye) - Fixed include path on Mac and linux (by Feng ye)
81 lines
2.7 KiB
C
81 lines
2.7 KiB
C
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2012 Bolton Software Ltd.
|
|
* Copyright (C) 2011 Chris Schoeneman
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file COPYING that should have accompanied this file.
|
|
*
|
|
* This package is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*--------------------------------------------------------------------------------------------------------
|
|
Original comment:
|
|
|
|
APIHIJACK.H - Based on DelayLoadProfileDLL.CPP, by Matt Pietrek for MSJ February 2000.
|
|
http://msdn.microsoft.com/library/periodic/period00/hood0200.htm
|
|
Adapted by Wade Brainerd, wadeb@wadeb.com
|
|
--------------------------------------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#pragma warning(disable:4200)
|
|
|
|
// Macro for convenient pointer addition.
|
|
// Essentially treats the last two parameters as DWORDs. The first
|
|
// parameter is used to typecast the result to the appropriate pointer type.
|
|
#define MakePtr(cast, ptr, addValue ) (cast)( (DWORD)(ptr)+(DWORD)(addValue))
|
|
|
|
// Default Hook Stub Structure: Contains data about the original function, Name/Ordinal, Address
|
|
// and a Count field. This is actually a block of assembly code.
|
|
#pragma pack( push, 1 )
|
|
struct DLPD_IAT_STUB
|
|
{
|
|
BYTE instr_CALL;
|
|
DWORD data_call;
|
|
BYTE instr_JMP;
|
|
DWORD data_JMP;
|
|
DWORD count;
|
|
DWORD pszNameOrOrdinal;
|
|
|
|
DLPD_IAT_STUB() : instr_CALL( 0xE8 ), instr_JMP( 0xE9 ), count( 0 ) {}
|
|
};
|
|
#pragma pack( pop )
|
|
|
|
// Example DefaultHook procedure, called from the DLPD_IAT_STUB stubs.
|
|
// Increments "count" field of the stub.
|
|
// See the implementation for more information.
|
|
void __cdecl DefaultHook( PVOID dummy );
|
|
|
|
struct SFunctionHook
|
|
{
|
|
char* Name; // Function name, e.g. "DirectDrawCreateEx".
|
|
void* HookFn; // Address of your function.
|
|
void* OrigFn; // Stored by HookAPICalls, the address of the original function.
|
|
};
|
|
|
|
struct SDLLHook
|
|
{
|
|
// Name of the DLL, e.g. "DDRAW.DLL"
|
|
char* Name;
|
|
|
|
// Set true to call the default for all non-hooked functions before they are executed.
|
|
bool UseDefault;
|
|
void* DefaultFn;
|
|
|
|
// Function hook array. Terminated with a NULL Name field.
|
|
SFunctionHook Functions[];
|
|
};
|
|
|
|
// Hook functions one or more DLLs.
|
|
bool HookAPICalls( SDLLHook* hook );
|