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

📄 qhtm_setresources.cpp

📁 hl2 source code. Do not use it illegal.
💻 CPP
字号:
/*----------------------------------------------------------------------
Copyright (c) 1998,1999 Gipsysoft. All Rights Reserved.
Please see the file "licence.txt" for licencing details.
File:	QHTM_SetResources.cpp
Owner:	russf@gipsysoft.com
Purpose:
	
				Allow client code to set the resources used in QHTM. 
----------------------------------------------------------------------*/
#include "stdafx.h"
#include "qhtm.h"
#include "QHTM_Includes.h"

UINT g_uHandCursorID = 0;
UINT g_uNoImageBitmapID = 0;
HINSTANCE g_hResourceInstance = NULL;

void WINAPI QHTM_SetResources( HINSTANCE hInst, UINT uHandCursorID, UINT uNoImageBitmapID )
{
	//
	//	Must pass all three!
	ASSERT( uHandCursorID );
	ASSERT( uNoImageBitmapID );
	ASSERT( hInst );

	g_uHandCursorID = uHandCursorID;
	g_uNoImageBitmapID = uNoImageBitmapID;
	g_hResourceInstance = hInst;
}

⌨️ 快捷键说明

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