⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 winresman.h

📁 Lido PXA270平台开发板的最新BSP,包括源代码
💻 H
字号:
/******************************************************************************
* Name         : winresman.h
* Title        : Windows side of the resource manager
* Author(s)    : Imagination Technologies
* Created      : 28th November 2003
*
* Copyright    : 2003 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  : 
*
* Platform     : 
*
* Notes        : 
* Modifications:-
* $Log: winresman.h $
*
*
******************************************************************************/

#if !defined (__WINRESMAN_H__)
#define __WINRESMAN_H__

typedef enum { PMC_TERMINATE_THREAD, PMC_REGISTER_PROCESS, PMC_UNREGISTER_PROCESS, PMC_CMDRESET } PMC;

typedef struct _RESMAN_MON_THREAD_PARAMS_
{
	IMG_UINT32	ui32ProcessCnt;						/* Count including command event */
	HANDLE		hProcesses[MAXIMUM_WAIT_OBJECTS];	/* First element is command event */

	PMC			eCommand;				/* Command to thread */
	HANDLE		hCmdParam;				/* Command parameter */
	IMG_BOOL	bCmdSuccessful;			/* Command successful? */

	HANDLE		hCommandCompletion;		/* Used to signal command completion */
	HANDLE		hThread;				/* Handle to monitoring thread */

} RESMAN_MON_THREAD_PARAMS, *PRESMAN_MON_THREAD_PARAMS;


#endif /* #ifndef __WINRESMAN_H__ */

/*****************************************************************************
 End of file 
*****************************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -