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

📄 registry.h

📁 Virtual Floppy Driver
💻 H
字号:
/*
	registry.h

	Generic registry manipulating functions
    Copyright (C) 2003 Kenji Kato
*/

#ifndef _REGISTRY_H_
#define _REGISTRY_H_

#ifdef __cplusplus
extern "C" {
#endif	/* __cplusplus */

/*	Get the associated program name of an extension	*/
DWORD GetAssociatedProgram(
	LPCTSTR ext,
	LPTSTR prog);

/*	Restore the previous association				*/
DWORD RestoreAssociation(
	LPCTSTR ext,
	LPCTSTR backup_value);

/*	Add an association to an extension				*/
DWORD AddAssociation(
	LPCTSTR ext,
	LPCTSTR type_prefix,
	LPCTSTR type_desc,
	LPCTSTR verb,
	LPCTSTR verb_desc,
	LPCTSTR program,
	int icon_idx);

#ifdef __cplusplus
}
#endif	/* __cplusplus */
#endif	/* _REGISTRY_H_	*/
/* end of file */

⌨️ 快捷键说明

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