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

📄 oxurl.inl

📁 《Windows多媒体编程基础》书第五章源代码SimpleBrowse一款简单易用的图片浏览器。其他目录中都是编译时需要的库和包含文件等(Bin是调试输出)。该工程较好的演示了一个工程中个要素之间的关
💻 INL
字号:
// ==========================================================================
// 					Inline functions : COXURL
// ==========================================================================

// Header file : OXURL.inl

// Source : R.Mortelmans
// Creation Date : 	   8th November 1996
// Last Modification : 8th November 1996
                          
// //////////////////////////////////////////////////////////////////////////

inline void COXURL::SetMainBuilt()
	// --- In  :
	// --- Out : 
	// --- Returns :
	// --- Effect : Mark that the main (full) URL has been built
	{
	m_bMainBuilt = TRUE;
	}

inline void COXURL::SetPartsBuilt()
	// --- In  :
	// --- Out : 
	// --- Returns :
	// --- Effect : Mark that the URL parts have been built
	{
	m_bPartsBuilt = TRUE;
	}

inline void COXURL::DestroyMain()
	// --- In  :
	// --- Out : 
	// --- Returns :
	// --- Effect : Mark that the main (full) URL is not valid anymore
	{
	// ... We just flag that the main data has not been built yet
	m_bMainBuilt = FALSE;
	}

inline void COXURL::DestroyParts()
	// --- In  :
	// --- Out : 
	// --- Returns :
	// --- Effect : Mark that the URL parts are not valid anymore
	{
	// ... We just flag that the parts data has not been built yet
	m_bPartsBuilt = FALSE;
	}

inline BOOL COXURL::IsMainBuilt() const
	// --- In  :
	// --- Out : 
	// --- Returns : Whether the main (full) URL has been built
	// --- Effect : 
	{
	return m_bMainBuilt;
	}

inline BOOL COXURL::ArePartsBuilt() const
	// --- In  :
	// --- Out : 
	// --- Returns : Whether the URL parts have been built
	// --- Effect : 
	{
	return m_bPartsBuilt;
	}

// ==========================================================================

⌨️ 快捷键说明

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