惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LINUX DO - 热门话题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
WordPress大学
WordPress大学
Project Zero
Project Zero
P
Palo Alto Networks Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
T
Tailwind CSS Blog
Forbes - Security
Forbes - Security
F
Full Disclosure
SecWiki News
SecWiki News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hacker News: Ask HN
Hacker News: Ask HN
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
F
Fortinet All Blogs
Cisco Talos Blog
Cisco Talos Blog
G
Google Developers Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recorded Future
Recorded Future
O
OpenAI News
Spread Privacy
Spread Privacy
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Cybersecurity and Infrastructure Security Agency CISA
S
Securelist
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
IT之家
IT之家
U
Unit 42
腾讯CDC
S
Security Affairs
C
Cisco Blogs
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Blog of Author Tim Ferriss

博客园 - xCvM

[导入]升级PJBlog2.5到PJBlog2.6 [导入]Google Maps应用大全 申请了codeday.com 打雷了...... 搬家倒计时...... Waiting for My Memory 终于回来了,爱姬 人算不如天算 For Record 视图\文档 - xCvM - 博客园 挂了~显示器 最后想出的标题:我们还年轻 NASM中文手册{Paste} night weak Lantern Festival - xCvM Promotion FROM Annual Dinner TO Now Pain in heart
GuiToolkit 1.1.5编译的一点说明
xCvM · 2006-03-08 · via 博客园 - xCvM

GuiToolkit 1.1.5 is a class set which allow You to build applications with new Microsoft interface style .It includes more than 50 of MFC classesThe main objective is to have a free set of classes that can be used and actualized without any restrictions.
号称Forever Free的代码,最近要使用一个可以停靠的outlookbar,放弃了一些只是换肤的控件,于是找上了它,虽然最后更新是2004年,但一点都不影响它的强大

开始编译:
visualstylesxp.h(6) : fatal error C1083: Cannot open include file: 'uxtheme.h': No such file or directory
提示Uxtheme.h 和Tmschema.h找不到,而Schemadef.h是在Tmschema.h里调用的,所以我们还需要另外三个文件,这在VC6里面没有,包含在Windows PlatformSDK安转了Visual Studio 2003或 Visual Studio 2005 中都有PlatformSDK。你若安装过,就不必费尽去下载385.0 MB的SDK了,默认安装的话三个文件都在
C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Include
(Uxtheme.h 中定义了在向控件添加外观风格的步骤中以及在相应的代码示例中所引用的 UxTheme API;Tmschema.h 中定义了各个类。听说要将WINVER,_WIN32_WINNT, _WIN32_WINDOWS定义为0x0501(支持XP)才能编译通过。)

已打包上来,可以在此点击下载。https://files.cnblogs.com/xcvm/Uxtheme.h.rar

Windows® Server 2003 SP1 Platform SDK下载地址:
Windows® Server 2003 SP1 Platform SDK ISO Install
(单个镜像文件)
http://download.microsoft.com/download/7/5/e/75ec7f04-4c8c-4f38-b582-966e76602643/5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img

Windows® Server 2003 SP1 Platform SDK Full Download
(多个压缩包)
http://www.microsoft.com/downloads/details.aspx?FamilyID=eba0128f-a770-45f1-86f3-7ab010b398a3&DisplayLang=en#filelist

File Name: File Size

PSDK-FULL.1.cab

25.0 MB

PSDK-FULL.10.cab

25.0 MB

PSDK-FULL.11.cab

25.0 MB

PSDK-FULL.12.cab

25.0 MB

PSDK-FULL.13.cab

25.0 MB

PSDK-FULL.14.cab

25.0 MB

PSDK-FULL.15.cab

25.0 MB

PSDK-FULL.16.cab

9.8 MB

PSDK-FULL.2.cab

25.0 MB

PSDK-FULL.3.cab

25.0 MB

PSDK-FULL.4.cab

25.0 MB

PSDK-FULL.5.cab

25.0 MB

PSDK-FULL.6.cab

25.0 MB

PSDK-FULL.7.cab

25.0 MB

PSDK-FULL.8.cab

25.0 MB

PSDK-FULL.9.cab

25.0 MB

PSDK-FULL.exe

94 KB

Windows® Server 2003 SP1 Platform SDK Web Install
(网络安装)

复制三个文件到 GuiLib 目录下,把
#include <uxtheme.h>
#include <tmschema.h>
改为
#include "uxtheme.h"
#include "tmschema.h"
就可以正常编译了