--------------------------------------------------------------------------------
修改 Cordova for Windows 7 的首页面地址
Cordova for Windows 7 的首页面地址为 www\index.html,定义在 shell.c 文件中的第9行。
[cpp]
#define BASE_URL L"www\\index.html"
#define BASE_URL L"www\\index.html"在 shell.c 文件中的第1386行使用。
[cpp]
GetFullPathName(BASE_URL, _MAX_PATH, full_path, 0); // Possible failure if the base directory has a very long name
GetFullPathName(BASE_URL, _MAX_PATH, full_path, 0); // Possible failure if the base directory has a very long name如果需要修改首页面地址,看取值的情况,如果是固定值的话,建议修改第9行。
[cpp]
#define BASE_URL L"www\\index.html"
#define BASE_URL L"www\\index.html"如果是变量的话,建议修改第1386行。
[cpp]
GetFullPathName(BASE_URL, _MAX_PATH, full_path, 0); // Possible failure if the base directory has a very long name
GetFullPathName(BASE_URL, _MAX_PATH, full_path, 0); // Possible failure if the base directory has a very long nam