tls1dll.h
来自「Symbain mobile code 手机应用程序源代码--基本结构方面」· C头文件 代码 · 共 32 行
H
32 行
// 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 + =
减小字号Ctrl + -
显示快捷键?