mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
マスタエディタ:使用ライセンスをSpreadSheetファイルに記述する処理を追加。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2211 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
66d4b40f08
commit
15392c839d
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -107,6 +107,16 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
|||||||
access += "commonClientKey(Debug). ";
|
access += "commonClientKey(Debug). ";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 使用ライセンス
|
||||||
|
System::String ^lib = gcnew System::String("");
|
||||||
|
if( hSrl->hLicenseList != nullptr )
|
||||||
|
{
|
||||||
|
for each( RCLicense ^lic in hSrl->hLicenseList )
|
||||||
|
{
|
||||||
|
lib += lic->Publisher + " " + lic->Name + ". ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 書類テンプレートの各タグを入力情報に置き換え
|
// 書類テンプレートの各タグを入力情報に置き換え
|
||||||
System::Xml::XmlNodeList ^list;
|
System::Xml::XmlNodeList ^list;
|
||||||
list = root->GetElementsByTagName( "Data" );
|
list = root->GetElementsByTagName( "Data" );
|
||||||
@ -224,6 +234,10 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
|
|||||||
{
|
{
|
||||||
node->FirstChild->Value = this->hSDK;
|
node->FirstChild->Value = this->hSDK;
|
||||||
}
|
}
|
||||||
|
if( node->FirstChild->Value->Equals( "TagLibrary" ) )
|
||||||
|
{
|
||||||
|
node->FirstChild->Value = lib;
|
||||||
|
}
|
||||||
// ROM情報 (TWL拡張情報)
|
// ROM情報 (TWL拡張情報)
|
||||||
if( node->FirstChild->Value->Equals( "TagEULAVersion" ) )
|
if( node->FirstChild->Value->Equals( "TagEULAVersion" ) )
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user