resize.h
来自「dm270 source code」· C头文件 代码 · 共 44 行
H
44 行
/*
DM270 ARM Evaluation Software
(c)Texas Instruments 2003
*/
#ifndef __RESIZE_H__
#define __RESIZE_H__
#include <system/armsys270.h>
#define RESIZE_IMAGE 0x0760
typedef struct {
Uint16 SrcAddrHigh;
Uint16 SrcAddrLow;
Uint16 DstAddrHigh;
Uint16 DstAddrLow;
Uint16 ImgWidth;
Uint16 ImgHeight;
Uint16 Resample_U;
Uint16 Resample_D;
Uint16 DstBuffWidth;
Uint16 DstBuffHeight;
} RESIZE_IMAGE_CMD;
typedef struct {
Uint16 ZoomedWidth;
Uint16 ZoomedHeight;
Uint16 EffectiveWidth;
Uint16 EffectiveHeight;
Uint16 Status;
} RESIZE_IMAGE_REPLY;
void RESIZE_MENU_run() ;
void RESIZE_run();
#endif /* __RESIZE_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?