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

📄 dllserver.cpp

📁 firtext搜索引擎源码
💻 CPP
字号:
#include "com/Com.h"#include "com/comerror.h"#include <assert.h>//static uint_least32_t lock_count = 0;static uint32_t lock_count = 0;FX_WINOLEAPI firtex::com::DllCanUnloadNowImpl(){	return ( lock_count > 0 ) ? FX_S_FALSE : FX_S_OK;}FX_WINOLEAPI firtex::com::DllLockServerImpl( int32_t fLock ){	// need to add thread safety	if ( fLock ) {		++lock_count;		assert( lock_count != 0 );	}	else {		assert( lock_count != 0 );		--lock_count;	}	return FX_S_OK;}

⌨️ 快捷键说明

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