mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
・Shared2ファイルとノーマルジャンプのアクセス許可を設定ファイルで設定させる仕様に変更。 ・Shared2ファイルのアクセスチェックとサイズチェックをファイルごとに変更。 ・Shared2ファイルサイズの指定を追加設定ファイルから設定ファイルに変更。 ・resource以下のファイルの参照をカレント相対からバイナリを格納するフォルダ相対に変更。 git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@102 7061adef-622a-194b-ae81-725974e89856
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
#include "stdafx.h"
|
|
|
|
using namespace System;
|
|
using namespace System::Reflection;
|
|
using namespace System::Runtime::CompilerServices;
|
|
using namespace System::Runtime::InteropServices;
|
|
using namespace System::Security::Permissions;
|
|
|
|
//
|
|
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
|
|
// アセンブリに関連付けられている情報を変更するには、
|
|
// これらの属性値を変更してください。
|
|
//
|
|
[assembly:AssemblyTitleAttribute("MasterEditorTWL")];
|
|
[assembly:AssemblyDescriptionAttribute("")];
|
|
[assembly:AssemblyConfigurationAttribute("")];
|
|
[assembly:AssemblyCompanyAttribute("任天堂株式会社")];
|
|
[assembly:AssemblyProductAttribute("MasterEditorTWL")];
|
|
[assembly:AssemblyCopyrightAttribute("Copyright (c) 任天堂株式会社 2008")];
|
|
[assembly:AssemblyTrademarkAttribute("")];
|
|
[assembly:AssemblyCultureAttribute("")];
|
|
|
|
//
|
|
// アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
// すべての値を指定するか、下のように '*' を使ってリビジョンおよびビルド番号を
|
|
// 既定値にすることができます:
|
|
|
|
[assembly:AssemblyVersionAttribute("1.3.*")];
|
|
|
|
[assembly:ComVisible(false)];
|
|
|
|
[assembly:CLSCompliantAttribute(true)];
|
|
|
|
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
|