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

📄 smsustrm.inl

📁 经过改造的EasyDgm
💻 INL
字号:
// SMSUSTRM.INL
//
// Copyright (c) Symbian Software Ltd. 1999-2005.  All rights reserved.

/**
* @file
* contains the inline functions of the RSmsSocketBuf class
*/

inline TInt RSmsSocketBuf::Lag(TRead) const
/**
@return how much the socket is lagging for read
If positive the buffer needs to read more from the socket in order to be synchronised
@internalComponent
*/
	{
	return Ptr(ERead)-End(ERead);
	}

inline TInt RSmsSocketBuf::Lag(TWrite) const
/**
@return how much the socket is lagging for write
If positive the buffer need to write more to the socket in order to be synchronised
*/
	{
	return Ptr(EWrite)-iBuffer;
	}

⌨️ 快捷键说明

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