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

📄 tls1dll.h

📁 Symbain mobile code 手机应用程序源代码--基本结构方面
💻 H
字号:
// TLS1dll.h
//
// Copyright (C) Symbian Software Ltd 2000-2005.  All rights reserved.


// DLL example program (1) to demonstrate the use of Thread local storage.

#include <e32test.h>


class CSetter : public CBase
  	{
public:
	IMPORT_C CSetter(CConsoleBase& aConsole);
	~CSetter();          
	IMPORT_C void   SetStaticTextL(const TDesC& aString);
	IMPORT_C void   ShowStaticText() const;
private: 
	CConsoleBase& iConsole;    // Use the console (not owned)
	};


class CGeneral : public CBase
  	{
public:
	IMPORT_C      CGeneral(CConsoleBase& aConsole);
	IMPORT_C void ShowStaticText() const;
private:
	CConsoleBase& iConsole; // Use the console (not owned)
	};

⌨️ 快捷键说明

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