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

📄 basicsession.cpp

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

// This example opens the file server session, and prints 
//"Hello File Server!" to the console.
// Used as the basis of all F32 examples

// Note that no data is written.

#include "CommonFramework.h"
#include <f32file.h>
	

LOCAL_D RFs fsSession;

// start of real example

LOCAL_C void doExampleL()
    {
	// open file server session
	User::LeaveIfError(fsSession.Connect()); // connect session
	// say hello
	_LIT(KGreeting,"Hello File Server!\n");
	console->Printf(KGreeting);
	fsSession.Close(); // close file server session
	}

⌨️ 快捷键说明

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