资 源 简 介
这是在windows开发环境下写的一个资源管理树程序,能够获取我的电脑下的所有资源信息。开发工具是VS2003,如果采用更高版本的工具打开,需要更改 stdaftx.h 中的一些宏。例如:
#ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
#endif
#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
#define _WIN32_WINDOWS 0x0501 // Change this to the appropriate value to target Windows Me or later.
#endif
<