📄 hook.c
字号:
/******************************************************************************
<module>
* Name : pvr_hook.c
* Title : hooking entry point
* Author(s) : Imagination Technologies
* Created : 2 March 2004
*
* Copyright : 2004 by Imagination Technologies Limited.
* All rights reserved. No part of this software, either
* material or conceptual may be copied or distributed,
* transmitted, transcribed, stored in a retrieval system
* or translated into any human or computer language in any
* form by any means, electronic, mechanical, manual or
* other-wise, or disclosed to third parties without the
* express written permission of Imagination Technologies
* Limited, Unit 8, HomePark Industrial Estate,
* King's Langley, Hertfordshire, WD4 8LZ, U.K.
*
* Description : Entry point for locally hooked d3dm driver and hook specific
* stuff
*
* Platform : Windows CE
*
</module>
$Log: hook.c $
********************************************************************************/
#include "context.h"
#if !defined(D3DM_REMOTE_HOOK)
DWORD PVRD3DM_Initialize(D3DM_INITIALIZE_DATA *pid);
#pragma message("Building in Local Hook")
extern DWORD D3DM_Initialize(D3DM_INITIALIZE_DATA * pid)
{
return PVRD3DM_Initialize(pid);
}
#endif /* ! D3DM_REMOTE_HOOK */
/*****************************************************************************
End of file (pvr_hook.c)
*****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -