--------------------------------------------------------------------------------
修改 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