📄 cameratypedlg.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 + -