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

📄 tcpipimpex.rss

📁 一个tcp/ip的程序,实现上传和下载等功能
💻 RSS
字号:
/**
* 
* @brief Resource file for TcpipImpEx application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

//  RESOURCE IDENTIFIER
NAME    TCPI // 4 letter ID

//  INCLUDES

#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
#include <eikon.rh>

#include "TcpipImpEx.loc"
#include "TcpipImpEx.hrh"
//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf="TcpipImpEx"; }

RESOURCE EIK_APP_INFO
	{
	menubar = r_TcpipImpExample_menubar;
	cba=R_AVKON_SOFTKEYS_OPTIONS_EXIT;
	}


//----------------------------------------------------
//   
//    r_TcpipImpExample_menubar
//    options menu for the application
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_TcpipImpExample_menubar
	{
	titles=
		{
		MENU_TITLE 
			{
			txt = ""; // the text is not used in Series 60
			menu_pane = r_TcpipImpExample_menu_pane;
			}
		};
	}


//----------------------------------------------------
//   
//    r_TcpipImpExample_menu_pane
//    options menu pane for the application
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_TcpipImpExample_menu_pane
	{
	items =
		{
		MENU_ITEM
			{
			command = ETcpipImpExampleCmdReadTime;
			txt = read_daytime_text;
			},
		MENU_ITEM
			{
			command = EAknCmdExit;
			txt = exit_text;
			}
		};
	}

// ---------------------------------------------------------
//   
//    Strings used by the application
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_label_text { buf = LABEL_TEXT;}
RESOURCE TBUF r_not_connected_text {buf = NOT_CONNECTED_TEXT;}
RESOURCE TBUF r_connected_text {buf = CONNECTED_TEXT;}
RESOURCE TBUF r_connecting_text {buf = CONNECTING_TEXT;}
RESOURCE TBUF r_lookingup_text { buf = LOOKINGUP_TEXT;}
RESOURCE TBUF r_reading_text {buf = READING_TEXT;}
RESOURCE TBUF r_disconnected_text {buf = DISCONNECTED_TEXT;}
RESOURCE TBUF r_dns_error_text {buf = DNS_ERROR_TEXT;}
RESOURCE TBUF r_conn_failed_text {buf = CONN_FAILED_TEXT;}
RESOURCE TBUF r_read_error_text {buf = READ_ERROR_TEXT;}
RESOURCE TBUF r_timed_out {buf = TIMED_OUT;}


// End of File

⌨️ 快捷键说明

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