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

📄 cameratypedlg.h

📁 Microsoft WinCE 6.0 BSP FINAL release source code for use with the i.MX27ADS TO2 WCE600_FINAL_MX27_S
💻 H
字号:
/*
 *
 *  Copyright (C) 2004-2006, Freescale Semiconductor, Inc. All Rights Reserved.
 *  THIS SOURCE CODE, AND ITS USE AND DISTRIBUTION, IS SUBJECT TO THE TERMS
 *  AND CONDITIONS OF THE APPLICABLE LICENSE AGREEMENT
 *
 *  File:			APPS/CAMAPP/CameraTypeDlg.h
 *  Purpose:		This file contains the prototype for the CameraTypeDialogProc.
 *  Notes:
 *
 *  Modifications:
 *  MM/DD/YYYY		Initials     		Change description 
*/

/*********************************************************************
 INCLUDE FILES  
*********************************************************************/
#include <windows.h>
#include "CsiClass.h"
#include "bspcsi.h"

/*********************************************************************
 MACRO DEFINITIONS 
*********************************************************************/
#define NUM_OF_CAMTYPE	3	// number of supported camera type

/*********************************************************************
 ENUMERATIONS AND STRUCTURES 
*********************************************************************/
typedef struct mapCmrSetType
{
	UINT code;
	csiSensorId_c type;
} mapCmrSetType_t;

/*********************************************************************
 EXPORTED FUNCTIONS
*********************************************************************/
BOOL CALLBACK CamTypeDialogProc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);

/*********************************************************************
 CLASS DEFINITIONS
*********************************************************************/
class CCamTypeDlg
{
 	public:
   		CCamTypeDlg();
   		~CCamTypeDlg();

		BOOL Init(HWND hWnd);
		BOOL Fini();

		csiSensorId m_CurDlgSensor;

	private:
		HWND   m_hWnd;
		HWND   m_hWndParent;
};

/*********************************************************************
 END OF FILE
*********************************************************************/

⌨️ 快捷键说明

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