TCPMP to vs2005

使用VS2005运行TCPMP。
1)打开模拟器,设置共享目录到.\armv4dbg,这样\Storage Card就映射到了可行文件。

2)修改player_ce3项目的调试、部署属性,将%CSIDL_PROGRAM_FILES%\player_ce3\player_ce3.exe替换成\Storage Card\player_ce3.exe。

关于CSIDL, MSDN说得明白:
CSIDL (constant special item ID list) values provide a unique system-independent way to identify special folders used frequently by applications, but which may not have the same name or location on any given system. For example, the system folder may be "C:\Windows" on one system and "C:\Winnt" on another. These constants are defined in Shlobj.h. A subset of them is also defined in Shfolder.h.

Constants

CSIDL_ADMINTOOLS (FOLDERID_AdminTools)
Version 5.0. The file system directory that is used to store administrative tools for an individual user. The Microsoft Management Console (MMC) will save customized consoles to this directory, and it will roam with the user.
CSIDL_ALTSTARTUP (FOLDERID_Startup)
The file system directory that corresponds to the user's nonlocalized Startup program group. This value is recognized in Windows Vista for backward compatibility, but the folder itself no longer exists.
CSIDL_APPDATA (FOLDERID_RoamingAppData)
Version 4.71. The file system directory that serves as a common repository for application-specific data. A typical path is C:\Documents and Settings\ username\Application Data. This CSIDL is supported by the redistributable Shfolder.dll for systems that do not have the Microsoft Internet Explorer 4.0 integrated Shell installed.

3)wavpack链接时出错,提示找不到Decrypt_Init()。修改 decrypt.c把if 0,改为i if 1。

你可能感兴趣的:(C++,c,windows,Microsoft,C#)