├── iBurnMgr
├── App.ini
├── iBurnMgr.rc
├── resource.h
├── zh-CN.lang
├── iBurnMgr.zh-CN.rc
├── images
│ ├── img100.png
│ ├── EMojiFace2.png
│ ├── mainicon.ico
│ ├── titleicon.png
│ └── background01.png
├── packages.config
├── app.config
├── Precompiled.cpp
├── en.lang
├── InspectionEnvironment.h
├── EquipmentController.h
├── ResolveBootSupervisor.h
├── MUIController.h
├── UniversalDiscFormat.h
├── UniversalDiscFormatDecode.cpp
├── Precompiled.h
├── DecompressSupervision.h
├── iBurnMgr.manifest
├── InspectionEnvironment.cpp
├── iBurnMgr.cpp
├── DrivesTraversal.cpp
├── APIController.h
├── ResolveBootSupervisor.cpp
├── FileManagerController.cpp
├── InformationWindow.cpp
├── ExplorerCombo.h
├── LowLevelFormat.txt
├── MUIController.cpp
├── iBurnMgr.vcxproj.filters
├── MetroWindow.h
├── StorageManagementAPI.cpp
├── DecompressSuprevision.cpp
└── iBurnMgr.vcxproj
├── packages
├── wtl.9.1
│ ├── tools
│ │ ├── AppWiz
│ │ │ ├── Files
│ │ │ │ ├── Templates
│ │ │ │ │ └── 1033
│ │ │ │ │ │ ├── root.h
│ │ │ │ │ │ ├── root.ico
│ │ │ │ │ │ ├── rootDoc.ico
│ │ │ │ │ │ ├── toolbar.bmp
│ │ │ │ │ │ ├── rootidl.h
│ │ │ │ │ │ ├── root.rgs
│ │ │ │ │ │ ├── rootps.def
│ │ │ │ │ │ ├── root.idl
│ │ │ │ │ │ ├── stdafx.cpp
│ │ │ │ │ │ ├── AboutDlg.cpp
│ │ │ │ │ │ ├── rootps.mk
│ │ │ │ │ │ ├── root.exe.manifest
│ │ │ │ │ │ ├── ReadMe.txt
│ │ │ │ │ │ ├── Templates.inf
│ │ │ │ │ │ ├── AboutDlg.h
│ │ │ │ │ │ ├── Ribbon.h
│ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ ├── ChildFrm.cpp
│ │ │ │ │ │ ├── View.cpp
│ │ │ │ │ │ ├── ChildFrm.h
│ │ │ │ │ │ ├── View.h
│ │ │ │ │ │ ├── stdafx.h
│ │ │ │ │ │ ├── MainDlg.cpp
│ │ │ │ │ │ ├── MainDlg.h
│ │ │ │ │ │ ├── Ribbon.xml
│ │ │ │ │ │ ├── root.cpp
│ │ │ │ │ │ └── Frame.cpp
│ │ │ │ ├── WTLAppWiz.ico
│ │ │ │ ├── Images
│ │ │ │ │ ├── WTLApp70.gif
│ │ │ │ │ └── WTLApp70_Background.gif
│ │ │ │ ├── WTLAppWiz.vsdir
│ │ │ │ └── WTLAppWiz.vsz
│ │ │ └── Setup.js
│ │ └── install.ps1
│ ├── wtl.9.1.nupkg
│ ├── build
│ │ └── native
│ │ │ └── wtl.targets
│ └── lib
│ │ └── native
│ │ └── include
│ │ ├── atlresce.h
│ │ ├── atlres.h
│ │ └── atldwm.h
└── repositories.config
├── docs
└── images
│ ├── NewUI.PNG
│ └── zh-CN.PNG
├── x64
└── utility
│ ├── 7z
│ ├── 7z.dll
│ ├── 7z.exe
│ ├── License.txt
│ ├── history.txt
│ └── readme.txt
│ ├── Oscdimg
│ ├── efisys.bin
│ ├── etfsboot.com
│ ├── oscdimg.exe
│ └── efisys_noprompt.bin
│ └── BCDBoot
│ ├── bcdboot.exe
│ ├── bcdedit.exe
│ └── bootsect.exe
├── iBurnMgr.sln
├── LICENSE
├── .gitignore
└── README.md
/iBurnMgr/App.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/App.ini
--------------------------------------------------------------------------------
/iBurnMgr/iBurnMgr.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/iBurnMgr.rc
--------------------------------------------------------------------------------
/iBurnMgr/resource.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/resource.h
--------------------------------------------------------------------------------
/iBurnMgr/zh-CN.lang:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/zh-CN.lang
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/root.h:
--------------------------------------------------------------------------------
1 | // [!output PROJECT_NAME].h
2 |
--------------------------------------------------------------------------------
/docs/images/NewUI.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/docs/images/NewUI.PNG
--------------------------------------------------------------------------------
/docs/images/zh-CN.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/docs/images/zh-CN.PNG
--------------------------------------------------------------------------------
/x64/utility/7z/7z.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/7z/7z.dll
--------------------------------------------------------------------------------
/x64/utility/7z/7z.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/7z/7z.exe
--------------------------------------------------------------------------------
/iBurnMgr/iBurnMgr.zh-CN.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/iBurnMgr.zh-CN.rc
--------------------------------------------------------------------------------
/iBurnMgr/images/img100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/images/img100.png
--------------------------------------------------------------------------------
/iBurnMgr/images/EMojiFace2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/images/EMojiFace2.png
--------------------------------------------------------------------------------
/iBurnMgr/images/mainicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/images/mainicon.ico
--------------------------------------------------------------------------------
/iBurnMgr/images/titleicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/images/titleicon.png
--------------------------------------------------------------------------------
/packages/wtl.9.1/wtl.9.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/wtl.9.1.nupkg
--------------------------------------------------------------------------------
/x64/utility/Oscdimg/efisys.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/Oscdimg/efisys.bin
--------------------------------------------------------------------------------
/iBurnMgr/images/background01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/iBurnMgr/images/background01.png
--------------------------------------------------------------------------------
/x64/utility/BCDBoot/bcdboot.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/BCDBoot/bcdboot.exe
--------------------------------------------------------------------------------
/x64/utility/BCDBoot/bcdedit.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/BCDBoot/bcdedit.exe
--------------------------------------------------------------------------------
/x64/utility/BCDBoot/bootsect.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/BCDBoot/bootsect.exe
--------------------------------------------------------------------------------
/x64/utility/Oscdimg/etfsboot.com:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/Oscdimg/etfsboot.com
--------------------------------------------------------------------------------
/x64/utility/Oscdimg/oscdimg.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/Oscdimg/oscdimg.exe
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/install.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/install.ps1
--------------------------------------------------------------------------------
/x64/utility/Oscdimg/efisys_noprompt.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/x64/utility/Oscdimg/efisys_noprompt.bin
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/WTLAppWiz.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/AppWiz/Files/WTLAppWiz.ico
--------------------------------------------------------------------------------
/iBurnMgr/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Images/WTLApp70.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/AppWiz/Files/Images/WTLApp70.gif
--------------------------------------------------------------------------------
/packages/repositories.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/root.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/root.ico
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/rootDoc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/rootDoc.ico
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/toolbar.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/toolbar.bmp
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/WTLAppWiz.vsdir:
--------------------------------------------------------------------------------
1 | WTLAppWiz.vsz| |ATL/WTL Application Wizard|1|An application that uses the Windows Template Library.| |6777|4096|#1154
2 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Images/WTLApp70_Background.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fcharlie/iBurnMgr/HEAD/packages/wtl.9.1/tools/AppWiz/Files/Images/WTLApp70_Background.gif
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/rootidl.h:
--------------------------------------------------------------------------------
1 | // [!output PROJECT_NAME].idl : IDL source for [!output PROJECT_NAME].exe
2 | //
3 |
4 | // Add interface and coclass declarations in this file
5 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/WTLAppWiz.vsz:
--------------------------------------------------------------------------------
1 | VSWIZARD 7.0
2 | Wizard=VsWizard.VsWizardEngine
3 |
4 | Param="WIZARD_NAME = WTLAppWiz"
5 | Param="WIZARD_VERSION = 7.0"
6 | Param="ABSOLUTE_PATH = ."
7 | Param="FALLBACK_LCID = 1033"
8 |
--------------------------------------------------------------------------------
/iBurnMgr/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/root.rgs:
--------------------------------------------------------------------------------
1 | HKCR
2 | {
3 | NoRemove AppID
4 | {
5 | {[!output WTL_APPID]} = s '[!output PROJECT_NAME]'
6 | '[!output PROJECT_NAME].EXE'
7 | {
8 | val AppID = s {[!output WTL_APPID]}
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/rootps.def:
--------------------------------------------------------------------------------
1 |
2 | LIBRARY "[!output PROJECT_NAME]PS"
3 |
4 | DESCRIPTION 'Proxy/Stub DLL'
5 |
6 | EXPORTS
7 | DllGetClassObject @1 PRIVATE
8 | DllCanUnloadNow @2 PRIVATE
9 | GetProxyDllInfo @3 PRIVATE
10 | DllRegisterServer @4 PRIVATE
11 | DllUnregisterServer @5 PRIVATE
12 |
--------------------------------------------------------------------------------
/iBurnMgr/Precompiled.cpp:
--------------------------------------------------------------------------------
1 | /*********************************************************************************************************
2 | * Precompiled.cpp
3 | * Note: iBurnMgr Precompiled
4 | * E-mail:
5 | * Date: @2015.03
6 | * Copyright (C) 2017 The ForceStudio All Rights Reserved.
7 | **********************************************************************************************************/
8 | #include "Precompiled.h"
9 |
--------------------------------------------------------------------------------
/iBurnMgr/en.lang:
--------------------------------------------------------------------------------
1 | LangNameShort=en
2 | LangName=English
3 | Adm=Administrator
4 | Discover=Find Image
5 | BMake=Began Making
6 | Fixboot=Fix Boot
7 | USBdrive=USB drive:
8 | ImageFile=Image File:
9 | ImageSize=Image Size:
10 | Notices=Notices
11 | NoticeInfo=Irreversible behavior(Format),Task running don't remove or insert the device\nSupport: Windows 7 or Later And Corresponding Server OS
12 | Byte=Byte
13 | KB=KB
14 | Tasknostart=Task no start
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/root.idl:
--------------------------------------------------------------------------------
1 | // [!output PROJECT_NAME].idl : IDL source for [!output PROJECT_NAME].exe
2 | //
3 |
4 | // This file will be processed by the MIDL tool to
5 | // produce the type library ([!output PROJECT_NAME].tlb) and marshalling code.
6 |
7 | import "oaidl.idl";
8 | import "ocidl.idl";
9 |
10 | [
11 | uuid([!output WTL_LIBID]),
12 | version(1.0),
13 | helpstring("[!output PROJECT_NAME] 1.0 Type Library")
14 | ]
15 | library [!output SAFE_PROJECT_NAME]Lib
16 | {
17 | importlib("stdole32.tlb");
18 | importlib("stdole2.tlb");
19 |
20 | };
21 |
--------------------------------------------------------------------------------
/iBurnMgr/InspectionEnvironment.h:
--------------------------------------------------------------------------------
1 | /*********************************************************************************************************
2 | * InspectionEnvironment.h
3 | * Note: iBurnMgr InspectionEnvironment
4 | * E-mail:
5 | * Date: @2015.03
6 | * Copyright (C) 2017 The ForceStudio All Rights Reserved.
7 | **********************************************************************************************************/
8 | #ifndef INSPECTIONENVIRONMENT
9 | #define INSPECTIONENVIRONMENT
10 |
11 |
12 | ////lParam HWND
13 | DWORD WINAPI InspectionEnvironmentThread(LPVOID lParam);
14 |
15 | #endif
16 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/stdafx.cpp:
--------------------------------------------------------------------------------
1 | // stdafx.cpp : source file that includes just the standard includes
2 | // [!output PROJECT_NAME].pch will be the pre-compiled header
3 | // stdafx.obj will contain the pre-compiled type information
4 |
5 | #include "stdafx.h"
6 |
7 | #if (_ATL_VER < 0x0700)
8 | #include
9 | #endif //(_ATL_VER < 0x0700)
10 | [!if WTL_COM_SERVER]
11 |
12 | #ifdef _ATL_STATIC_REGISTRY
13 | #include
14 | #if (_ATL_VER < 0x0700)
15 | #include
16 | #endif //(_ATL_VER < 0x0700)
17 | #endif //_ATL_STATIC_REGISTRY
18 | [!endif]
19 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/AboutDlg.cpp:
--------------------------------------------------------------------------------
1 | // aboutdlg.cpp : implementation of the CAboutDlg class
2 | //
3 | /////////////////////////////////////////////////////////////////////////////
4 |
5 | #include "stdafx.h"
6 | #include "resource.h"
7 |
8 | #include "aboutdlg.h"
9 |
10 | LRESULT CAboutDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
11 | {
12 | CenterWindow(GetParent());
13 | return TRUE;
14 | }
15 |
16 | LRESULT CAboutDlg::OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
17 | {
18 | EndDialog(wID);
19 | return 0;
20 | }
21 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/rootps.mk:
--------------------------------------------------------------------------------
1 |
2 | [!output PROJECT_NAME]ps.dll: dlldata.obj [!output PROJECT_NAME]_p.obj [!output PROJECT_NAME]_i.obj
3 | link /dll /out:[!output PROJECT_NAME]ps.dll /def:[!output PROJECT_NAME]ps.def /entry:DllMain dlldata.obj [!output PROJECT_NAME]_p.obj [!output PROJECT_NAME]_i.obj \
4 | kernel32.lib rpcndr.lib rpcns4.lib rpcrt4.lib oleaut32.lib uuid.lib \
5 |
6 | .c.obj:
7 | cl /c /Ox /DWIN32 /D_WIN32_WINNT=0x0400 /DREGISTER_PROXY_DLL \
8 | $<
9 |
10 | clean:
11 | @del [!output PROJECT_NAME]ps.dll
12 | @del [!output PROJECT_NAME]ps.lib
13 | @del [!output PROJECT_NAME]ps.exp
14 | @del dlldata.obj
15 | @del [!output PROJECT_NAME]_p.obj
16 | @del [!output PROJECT_NAME]_i.obj
17 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/build/native/wtl.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ;%(PreprocessorDefinitions)
6 | $(MSBuildThisFileDirectory)..\..\lib\native\include\;%(AdditionalIncludeDirectories)
7 |
8 |
9 | $(MSBuildThisFileDirectory)..\..\lib\native\include\;%(AdditionalIncludeDirectories)
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/root.exe.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 | [!output PROJECT_NAME] Application
11 |
12 |
13 |
14 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/iBurnMgr/EquipmentController.h:
--------------------------------------------------------------------------------
1 | /*********************************************************************************************************
2 | * EquipmentController.h
3 | * Note: iBurnMgr EquipmentController
4 | * E-mail:
5 | * Date: @2015.03
6 | * Copyright (C) 2017 The ForceStudio All Rights Reserved.
7 | **********************************************************************************************************/
8 | #ifndef EQUIPMENTCONTROLLER_H
9 | #define EQUIPMENTCONTROLLER_H
10 |
11 | typedef struct _RemoveableDrive{
12 | wchar_t driveLetter[4];
13 | wchar_t drivePath[8];
14 | wchar_t sizeInfo[64];
15 | }RemoveableDrive;
16 |
17 | UINT WINAPI DiscoverRemoveableDrives(ULONGLONG limitSize = 0);
18 |
19 | extern RemoveableDrive g_DriveList[26];
20 | #endif
21 |
--------------------------------------------------------------------------------
/iBurnMgr/ResolveBootSupervisor.h:
--------------------------------------------------------------------------------
1 | /*********************************************************************************************************
2 | * ResolveBootSupervisor.h
3 | * Note: iBurnMgr ResolveBootSupervisor
4 | * E-mail:
5 | * Date: @2015.03
6 | * Copyright (C) 2017 The ForceStudio All Rights Reserved.
7 | **********************************************************************************************************/
8 | #ifndef RESOLVEBOOTSUPERVISOR
9 | #define RESOLVEBOOTSUPERVISOR
10 | #ifndef _STRING_
11 | #include
12 | #endif
13 |
14 | namespace ResolveSupervisor{
15 | typedef struct _ResolveData{
16 | std::wstring latter;
17 | HWND m_hWnd;
18 | }ResolveData;
19 | DWORD WINAPI ResolveSupervisorThread(LPVOID lParam);
20 | enum DriveTarget{
21 | OSNT6=1,
22 | OSNT5=2
23 | };
24 | class ResolveSupervisor{
25 | public:
26 | static bool FixUSBDeviceBoot(LPCWSTR DeviceLetter);
27 | ResolveSupervisor();
28 | };
29 | }
30 |
31 | #endif
32 |
--------------------------------------------------------------------------------
/iBurnMgr.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2013
4 | VisualStudioVersion = 12.0.40629.0
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "iBurnMgr", "iBurnMgr\iBurnMgr.vcxproj", "{8286DDB9-1CB6-4D6C-A805-B46C4DD9EFCB}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|x64 = Debug|x64
11 | Release|x64 = Release|x64
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {8286DDB9-1CB6-4D6C-A805-B46C4DD9EFCB}.Debug|x64.ActiveCfg = Debug|x64
15 | {8286DDB9-1CB6-4D6C-A805-B46C4DD9EFCB}.Debug|x64.Build.0 = Debug|x64
16 | {8286DDB9-1CB6-4D6C-A805-B46C4DD9EFCB}.Release|x64.ActiveCfg = Release|x64
17 | {8286DDB9-1CB6-4D6C-A805-B46C4DD9EFCB}.Release|x64.Build.0 = Release|x64
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | EndGlobal
23 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/ReadMe.txt:
--------------------------------------------------------------------------------
1 | ========================================================================
2 | Windows Template Library : "[!output PROJECT_NAME]" Project Overview
3 | ========================================================================
4 |
5 | The ATL/WTL Application Wizard has created this "[!output PROJECT_NAME]" project for you as a starting point.
6 |
7 | This file contains a summary of what you will find in each of the files that make up your project.
8 |
9 | WTLApp70.vcproj
10 | This is the main project file for projects generated using an Application Wizard.
11 | It contains information about the version of the product that generated the file, and
12 | information about the platforms, configurations, and project features selected with the
13 | Application Wizard.
14 |
15 | /////////////////////////////////////////////////////////////////////////////
16 | Other notes:
17 |
18 | /////////////////////////////////////////////////////////////////////////////
19 |
--------------------------------------------------------------------------------
/packages/wtl.9.1/tools/AppWiz/Files/Templates/1033/Templates.inf:
--------------------------------------------------------------------------------
1 | stdafx.cpp
2 | stdafx.h
3 | root.cpp
4 | root.h
5 | root.rc
6 |
7 | [!if !WTL_APPTYPE_DLG]
8 | frame.h
9 | [!if WTL_USE_CPP_FILES]
10 | frame.cpp
11 | [!endif]
12 | toolbar.bmp
13 | [!endif]
14 |
15 | [!if WTL_APPTYPE_DLG]
16 | MainDlg.h
17 | [!if WTL_USE_CPP_FILES]
18 | MainDlg.cpp
19 | [!endif]
20 | [!endif]
21 |
22 | root.ico
23 |
24 | [!if WTL_APPTYPE_MDI]
25 | rootDoc.ico
26 | ChildFrm.h
27 | [!if WTL_USE_CPP_FILES]
28 | ChildFrm.cpp
29 | [!endif]
30 | [!endif]
31 |
32 | [!if WTL_USE_VIEW]
33 | view.h
34 | [!if WTL_USE_CPP_FILES]
35 | view.cpp
36 | [!endif]
37 | [!endif]
38 |
39 | [!if !WTL_APPTYPE_DLG_MODAL]
40 | AboutDlg.h
41 | [!if WTL_USE_CPP_FILES]
42 | AboutDlg.cpp
43 | [!endif]
44 | [!endif]
45 |
46 | resource.h
47 |
48 | [!if WTL_USE_RIBBON]
49 | Ribbon.xml
50 | Ribbon.h
51 | [!endif]
52 |
53 | [!if WTL_COM_SERVER]
54 | root.idl
55 | root.rgs
56 | rootps.mk
57 | rootps.def
58 | [!endif]
59 |
60 | [!if WTL_USE_MANIFEST]
61 | root.exe.manifest
62 | [!endif]
63 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Mr.Huxizero
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/x64/utility/7z/License.txt:
--------------------------------------------------------------------------------
1 | 7-Zip Extra
2 | ~~~~~~~~~~~
3 | License for use and distribution
4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 |
6 | Copyright (C) 1999-2016 Igor Pavlov.
7 |
8 | 7-Zip Extra files are under the GNU LGPL license.
9 |
10 |
11 | Notes:
12 | You can use 7-Zip Extra on any computer, including a computer in a commercial
13 | organization. You don't need to register or pay for 7-Zip.
14 |
15 |
16 | GNU LGPL information
17 | --------------------
18 |
19 | This library is free software; you can redistribute it and/or
20 | modify it under the terms of the GNU Lesser General Public
21 | License as published by the Free Software Foundation; either
22 | version 2.1 of the License, or (at your option) any later version.
23 |
24 | This library is distributed in the hope that it will be useful,
25 | but WITHOUT ANY WARRANTY; without even the implied warranty of
26 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 | Lesser General Public License for more details.
28 |
29 | You can receive a copy of the GNU Lesser General Public License from
30 | http://www.gnu.org/
31 |
32 |
--------------------------------------------------------------------------------
/iBurnMgr/MUIController.h:
--------------------------------------------------------------------------------
1 | /*********************************************************************************************************
2 | * MUIController.h
3 | * Note: iBurnMgr MUIController
4 | * E-mail:
5 | * Date: @2015.03
6 | * Copyright (C) 2017 The ForceStudio All Rights Reserved.
7 | **********************************************************************************************************/
8 | #ifndef METROMUI_CONTROLLER
9 | #define METROMUI_CONTROLLER
10 |
11 |
12 |
13 | #include
14 | #include