?? move_cursor.c
字號:
/* * * Copyright (c) Sigma Designs, Inc. 2003. All rights reserved. * *//** @file move_cursor.c @brief sample application to access the Mambo chip @author Christian Wolff*/#include "rua.h"#include "rua_property.h"#include "move_cursor.h"RMstatus move_cursor(struct RUA *pInstance, RMuint32 x, RMuint32 y) { RMstatus err; struct DispMainMixer_SourcePosition_type layerpos; layerpos.SourceModuleID = DispHardwareCursor; layerpos.XPosition = x; layerpos.YPosition = y; err = RUASetProperty(pInstance, DispMainMixer, RMDispMainMixerPropertyID_SourcePosition, &layerpos, sizeof(layerpos), 0); return err;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -