From 8ca2b17e513e0f5cae552d24e78dfdc15befdc82 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Wed, 10 Jun 2015 21:19:17 -0700 Subject: [PATCH] Doc headers. --- src/Xenia.Debug.UI/Controls/BaseDocument.cs | 11 ++++++++++- src/Xenia.Debug.UI/Controls/BasePanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/MainWindow.cs | 11 ++++++++++- src/Xenia.Debug.UI/Program.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/BreakpointsPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/CallstackPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/CodeDocument.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/FilesystemPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/FunctionsPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/HeapDocument.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/MemoryDocument.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/ModulesPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/ProfilePanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/RegistersPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/StatisticsDocument.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/ThreadsPanel.cs | 11 ++++++++++- src/Xenia.Debug.UI/Views/TracePanel.cs | 11 ++++++++++- src/Xenia.Debug/Breakpoint.cs | 11 ++++++++++- src/Xenia.Debug/BreakpointList.cs | 11 ++++++++++- src/Xenia.Debug/Callstack.cs | 11 ++++++++++- src/Xenia.Debug/Context.cs | 11 ++++++++++- src/Xenia.Debug/Debugger.cs | 11 ++++++++++- src/Xenia.Debug/Function.cs | 11 ++++++++++- src/Xenia.Debug/KernelObject.cs | 11 ++++++++++- src/Xenia.Debug/Memory.cs | 11 ++++++++++- src/Xenia.Debug/MemoryView.cs | 11 ++++++++++- src/Xenia.Debug/Module.cs | 11 ++++++++++- src/Xenia.Debug/ModuleList.cs | 11 ++++++++++- src/Xenia.Debug/Thread.cs | 11 ++++++++++- src/Xenia.Debug/ThreadList.cs | 11 ++++++++++- src/Xenia.Debug/Utilities/Changeable.cs | 11 ++++++++++- src/Xenia.Debug/Utilities/Dispatch.cs | 11 ++++++++++- src/Xenia.Debug/Utilities/Disposable.cs | 11 ++++++++++- src/Xenia.Debug/Utilities/FileMapping.cs | 11 ++++++++++- src/Xenia.Debug/Utilities/TaskExtensions.cs | 11 ++++++++++- 35 files changed, 350 insertions(+), 35 deletions(-) diff --git a/src/Xenia.Debug.UI/Controls/BaseDocument.cs b/src/Xenia.Debug.UI/Controls/BaseDocument.cs index 90930261b..cfedc03cb 100644 --- a/src/Xenia.Debug.UI/Controls/BaseDocument.cs +++ b/src/Xenia.Debug.UI/Controls/BaseDocument.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Controls/BasePanel.cs b/src/Xenia.Debug.UI/Controls/BasePanel.cs index d3ec117ef..32132d471 100644 --- a/src/Xenia.Debug.UI/Controls/BasePanel.cs +++ b/src/Xenia.Debug.UI/Controls/BasePanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/MainWindow.cs b/src/Xenia.Debug.UI/MainWindow.cs index a262fe933..a0bd3bfd0 100644 --- a/src/Xenia.Debug.UI/MainWindow.cs +++ b/src/Xenia.Debug.UI/MainWindow.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Program.cs b/src/Xenia.Debug.UI/Program.cs index fd628be77..77c5ec06f 100644 --- a/src/Xenia.Debug.UI/Program.cs +++ b/src/Xenia.Debug.UI/Program.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Windows.Forms; namespace Xenia.Debug.UI { diff --git a/src/Xenia.Debug.UI/Views/BreakpointsPanel.cs b/src/Xenia.Debug.UI/Views/BreakpointsPanel.cs index d4e9022a2..a2c391d5a 100644 --- a/src/Xenia.Debug.UI/Views/BreakpointsPanel.cs +++ b/src/Xenia.Debug.UI/Views/BreakpointsPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/CallstackPanel.cs b/src/Xenia.Debug.UI/Views/CallstackPanel.cs index ef1e5fe07..38eb2bdd9 100644 --- a/src/Xenia.Debug.UI/Views/CallstackPanel.cs +++ b/src/Xenia.Debug.UI/Views/CallstackPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/CodeDocument.cs b/src/Xenia.Debug.UI/Views/CodeDocument.cs index 508e336b5..1a0bdac9e 100644 --- a/src/Xenia.Debug.UI/Views/CodeDocument.cs +++ b/src/Xenia.Debug.UI/Views/CodeDocument.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/FilesystemPanel.cs b/src/Xenia.Debug.UI/Views/FilesystemPanel.cs index 4ae872f76..ea1bbb20c 100644 --- a/src/Xenia.Debug.UI/Views/FilesystemPanel.cs +++ b/src/Xenia.Debug.UI/Views/FilesystemPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/FunctionsPanel.cs b/src/Xenia.Debug.UI/Views/FunctionsPanel.cs index 80555caa6..16dbc1bdd 100644 --- a/src/Xenia.Debug.UI/Views/FunctionsPanel.cs +++ b/src/Xenia.Debug.UI/Views/FunctionsPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/HeapDocument.cs b/src/Xenia.Debug.UI/Views/HeapDocument.cs index 57abb7ca6..f59371c3f 100644 --- a/src/Xenia.Debug.UI/Views/HeapDocument.cs +++ b/src/Xenia.Debug.UI/Views/HeapDocument.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/MemoryDocument.cs b/src/Xenia.Debug.UI/Views/MemoryDocument.cs index ca937ebf9..3ad93b4a0 100644 --- a/src/Xenia.Debug.UI/Views/MemoryDocument.cs +++ b/src/Xenia.Debug.UI/Views/MemoryDocument.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/ModulesPanel.cs b/src/Xenia.Debug.UI/Views/ModulesPanel.cs index 18ddc0c29..e268639ee 100644 --- a/src/Xenia.Debug.UI/Views/ModulesPanel.cs +++ b/src/Xenia.Debug.UI/Views/ModulesPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/ProfilePanel.cs b/src/Xenia.Debug.UI/Views/ProfilePanel.cs index 5a1677538..d7d424ac9 100644 --- a/src/Xenia.Debug.UI/Views/ProfilePanel.cs +++ b/src/Xenia.Debug.UI/Views/ProfilePanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/RegistersPanel.cs b/src/Xenia.Debug.UI/Views/RegistersPanel.cs index 0d8d8569f..3dd0e240b 100644 --- a/src/Xenia.Debug.UI/Views/RegistersPanel.cs +++ b/src/Xenia.Debug.UI/Views/RegistersPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/StatisticsDocument.cs b/src/Xenia.Debug.UI/Views/StatisticsDocument.cs index 47a2dc58c..417155f14 100644 --- a/src/Xenia.Debug.UI/Views/StatisticsDocument.cs +++ b/src/Xenia.Debug.UI/Views/StatisticsDocument.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/ThreadsPanel.cs b/src/Xenia.Debug.UI/Views/ThreadsPanel.cs index bd6784d8a..38041a49c 100644 --- a/src/Xenia.Debug.UI/Views/ThreadsPanel.cs +++ b/src/Xenia.Debug.UI/Views/ThreadsPanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug.UI/Views/TracePanel.cs b/src/Xenia.Debug.UI/Views/TracePanel.cs index 841101a14..ad1a9d5ad 100644 --- a/src/Xenia.Debug.UI/Views/TracePanel.cs +++ b/src/Xenia.Debug.UI/Views/TracePanel.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; diff --git a/src/Xenia.Debug/Breakpoint.cs b/src/Xenia.Debug/Breakpoint.cs index 43cb39e57..b5f787c95 100644 --- a/src/Xenia.Debug/Breakpoint.cs +++ b/src/Xenia.Debug/Breakpoint.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/BreakpointList.cs b/src/Xenia.Debug/BreakpointList.cs index e0bc303d2..4bbbd1c83 100644 --- a/src/Xenia.Debug/BreakpointList.cs +++ b/src/Xenia.Debug/BreakpointList.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/src/Xenia.Debug/Callstack.cs b/src/Xenia.Debug/Callstack.cs index 9228b099e..9384c42dd 100644 --- a/src/Xenia.Debug/Callstack.cs +++ b/src/Xenia.Debug/Callstack.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Context.cs b/src/Xenia.Debug/Context.cs index 853147e46..c7846e3af 100644 --- a/src/Xenia.Debug/Context.cs +++ b/src/Xenia.Debug/Context.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Debugger.cs b/src/Xenia.Debug/Debugger.cs index 0d1818d5d..5b1b35518 100644 --- a/src/Xenia.Debug/Debugger.cs +++ b/src/Xenia.Debug/Debugger.cs @@ -1,4 +1,13 @@ -using FlatBuffers; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using FlatBuffers; using System; using System.Collections.Concurrent; using System.Collections.Generic; diff --git a/src/Xenia.Debug/Function.cs b/src/Xenia.Debug/Function.cs index 913f6413a..58671dba5 100644 --- a/src/Xenia.Debug/Function.cs +++ b/src/Xenia.Debug/Function.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/KernelObject.cs b/src/Xenia.Debug/KernelObject.cs index 55035e98a..78f45942c 100644 --- a/src/Xenia.Debug/KernelObject.cs +++ b/src/Xenia.Debug/KernelObject.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Memory.cs b/src/Xenia.Debug/Memory.cs index 44dd9328c..b2f9232cc 100644 --- a/src/Xenia.Debug/Memory.cs +++ b/src/Xenia.Debug/Memory.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/MemoryView.cs b/src/Xenia.Debug/MemoryView.cs index 7c2dc9e57..714ebff3a 100644 --- a/src/Xenia.Debug/MemoryView.cs +++ b/src/Xenia.Debug/MemoryView.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Module.cs b/src/Xenia.Debug/Module.cs index 9e0928bd3..9440a4585 100644 --- a/src/Xenia.Debug/Module.cs +++ b/src/Xenia.Debug/Module.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/src/Xenia.Debug/ModuleList.cs b/src/Xenia.Debug/ModuleList.cs index 3919891ca..d698e3993 100644 --- a/src/Xenia.Debug/ModuleList.cs +++ b/src/Xenia.Debug/ModuleList.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/src/Xenia.Debug/Thread.cs b/src/Xenia.Debug/Thread.cs index ad5c91519..8057fe2ba 100644 --- a/src/Xenia.Debug/Thread.cs +++ b/src/Xenia.Debug/Thread.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/ThreadList.cs b/src/Xenia.Debug/ThreadList.cs index 09e1a514c..737c8c437 100644 --- a/src/Xenia.Debug/ThreadList.cs +++ b/src/Xenia.Debug/ThreadList.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/src/Xenia.Debug/Utilities/Changeable.cs b/src/Xenia.Debug/Utilities/Changeable.cs index b32057775..35016e043 100644 --- a/src/Xenia.Debug/Utilities/Changeable.cs +++ b/src/Xenia.Debug/Utilities/Changeable.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Utilities/Dispatch.cs b/src/Xenia.Debug/Utilities/Dispatch.cs index e24f3b3db..d23e13461 100644 --- a/src/Xenia.Debug/Utilities/Dispatch.cs +++ b/src/Xenia.Debug/Utilities/Dispatch.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Utilities/Disposable.cs b/src/Xenia.Debug/Utilities/Disposable.cs index 97d0348c2..98a167030 100644 --- a/src/Xenia.Debug/Utilities/Disposable.cs +++ b/src/Xenia.Debug/Utilities/Disposable.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Xenia.Debug/Utilities/FileMapping.cs b/src/Xenia.Debug/Utilities/FileMapping.cs index 40c3abcc1..9c935610e 100644 --- a/src/Xenia.Debug/Utilities/FileMapping.cs +++ b/src/Xenia.Debug/Utilities/FileMapping.cs @@ -1,4 +1,13 @@ -using Microsoft.Win32.SafeHandles; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using Microsoft.Win32.SafeHandles; using System; using System.Collections.Generic; using System.ComponentModel; diff --git a/src/Xenia.Debug/Utilities/TaskExtensions.cs b/src/Xenia.Debug/Utilities/TaskExtensions.cs index 46ba4afae..bfbafe667 100644 --- a/src/Xenia.Debug/Utilities/TaskExtensions.cs +++ b/src/Xenia.Debug/Utilities/TaskExtensions.cs @@ -1,4 +1,13 @@ -using System; +/** + ****************************************************************************** + * Xenia : Xbox 360 Emulator Research Project * + ****************************************************************************** + * Copyright 2015 Ben Vanik. All rights reserved. * + * Released under the BSD license - see LICENSE in the root for more details. * + ****************************************************************************** + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets;