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

📄 regkeys.h

📁 wince IE浏览器的源码
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
#ifndef REG_KEYS_H
#define REG_KEYS_H

#define REG_KEY_INTERNET_EXPLORER	TEXT("Software\\Microsoft\\Internet Explorer")
#define REG_KEY_BROWSER_TYPED_URLS	REG_KEY_INTERNET_EXPLORER TEXT("\\TypedURLs")
#define REG_KEY_BROWSER_OPTIONS		REG_KEY_INTERNET_EXPLORER TEXT("\\Main")
#define REG_KEY_BROWSER_FAVORITES	REG_KEY_INTERNET_EXPLORER TEXT("\\Favorites")
#define REG_KEY_BROWSER_URL			TEXT("URL")
#define REG_KEY_BROWSER_FONTSIZE	TEXT("Software\\Microsoft\\Internet Explorer\\International\\")

// This key contains the registry's copy of the browser cache (actually, it
// just contains the cookie: cache entries).  This allows the cache to be
// persisted across power loss by being saved to flash whenever an application
// calls RegFlushKey (which calls the OemWriteRegistry function).
#define REG_KEY_BROWSER_CACHE		REG_KEY_INTERNET_EXPLORER TEXT("\\Cache")

#define REG_VAL_PERSISTENT_CACHE		TEXT("Persistent Cache")
#define REG_VAL_ENABLE_FAVORITES		TEXT("Favorites")
#define REG_VAL_CACHE_BACKUP_INTERVAL	TEXT("Cache Backup")
#define REG_VAL_STATUS_ANIMATION		TEXT("Status Animation")
#define REG_VAL_FONTSIZE				TEXT("IEFontSize")

#endif // REG_KEYS_H

⌨️ 快捷键说明

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