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

📄 strstore.h

📁 WinCE下文字滚动的实例
💻 H
字号:
// StrStore.h: interface for the CStrStore class.
//
//Version:
//	1.0.0
//Date:
//	2008.02.26
//////////////////////////////////////////////////////////////////////

#pragma once



//-----------------------------------------------------------------------
class CStrStore  
{
public:
	int GetDataLength(int iIndex);
	int FindData(const TCHAR *pcszFind);
	BOOL GetData(int iIndex,TCHAR *pszOut, int iSize);
	int GetAmount();
	void DeleteAllData();
	BOOL Add(const TCHAR * pszIn);
	CStrStore();
	virtual ~CStrStore();
protected:

	typedef struct _StoreData
	{
		TCHAR *pszString;
		_StoreData *pNextData;
	}STOREDATA,*PSTOREDATA;
	PSTOREDATA m_pFirstData;
	PSTOREDATA m_pEndData;

	int m_iAmount;

};


⌨️ 快捷键说明

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