mp3playerstationsrecord.hpp

来自「music player developemntm usic player de」· HPP 代码 · 共 33 行

HPP
33
字号
/*	------------------------------------------------------------------------	Copyright (C) 2001 COMNEON Software GmbH & Co. All rights reserved.	------------------------------------------------------------------------	This document contains proprietary information belonging to COMNEON.	Passing on and copying of this document, use and communication of its	contents is not permitted without prior written authorisation.	------------------------------------------------------------------------ */#if !defined(Mmi_MP3PlayerStationsRecord_hpp)#define Mmi_MP3PlayerStationsRecord_hpp#include <AddOns/AdcExtensions/Record.hpp>class MP3PlayerStationsRecord : public Record {	typedef Record Base;	public:		MP3PlayerStationsRecord( UINT32 radio_freq = 0L ); 		struct Persist {			UINT32 radio_freq;		} m_data;		virtual const UINT8* GetData();		virtual void SetData(const UINT8* data);		virtual INT GetPersistentSize();		void SetRadioFreq(UINT32 radio_freq) { m_data.radio_freq = radio_freq; }		UINT32 GetRadioFreq() { return m_data.radio_freq; }};#endif	// Mmi_MP3PlayerStationsRecord_hpp

⌨️ 快捷键说明

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