Skip to content

Commit caa76f9

Browse files
committed
initial release
0 parents  commit caa76f9

10 files changed

Lines changed: 1367 additions & 0 deletions

File tree

24.manifest

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
3+
<assemblyIdentity
4+
name="PMSoft.Common.Wocai"
5+
processorArchitecture="x86"
6+
version="1.0.0.0"
7+
type="win32"/>
8+
<description>Windows Shell</description>
9+
<!--
10+
<dependency>
11+
<dependentAssembly>
12+
<assemblyIdentity type="win32" name="WebCore" version="2.0.0.0" processorArchitecture="x86"></assemblyIdentity>
13+
</dependentAssembly>
14+
</dependency>
15+
-->
16+
<dependency>
17+
<dependentAssembly>
18+
<assemblyIdentity
19+
type="win32"
20+
name="Microsoft.Windows.Common-Controls"
21+
version="6.0.0.0"
22+
processorArchitecture="x86"
23+
publicKeyToken="6595b64144ccf1df"
24+
language="*"
25+
/>
26+
</dependentAssembly>
27+
</dependency>
28+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
29+
<application>
30+
<!-- Windows 10 -->
31+
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
32+
<!-- Windows 8.1 -->
33+
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
34+
<!-- Windows Vista -->
35+
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
36+
<!-- Windows 7 -->
37+
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
38+
<!-- Windows 8 -->
39+
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
40+
<windowsSettings>
41+
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
42+
</windowsSettings>
43+
</application>
44+
</compatibility>
45+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
46+
<security>
47+
<requestedPrivileges>
48+
<requestedExecutionLevel
49+
level="requireAdministrator"
50+
uiAccess="false"/>
51+
</requestedPrivileges>
52+
</security>
53+
</trustInfo>
54+
</assembly>

AutoRes.dpr

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
program AutoRes;
2+
3+
{$R 'res.res' 'res.rc'}
4+
5+
uses
6+
Forms,
7+
uAutoRes in 'uAutoRes.pas' {frmAutoRes},
8+
uJson in 'uJson.pas',
9+
superobject,
10+
EncdDecd in 'EncdDecd.pas';
11+
12+
{$R *.res}
13+
14+
begin
15+
Application.Initialize;
16+
Application.MainFormOnTaskbar := True;
17+
if RunFromCLI() then
18+
Exit;
19+
Application.CreateForm(TfrmAutoRes, frmAutoRes);
20+
Application.Run;
21+
end.

AutoRes.dproj

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{EB96380F-10AB-4367-BAE0-B2B50C769D82}</ProjectGuid>
4+
<ProjectVersion>12.3</ProjectVersion>
5+
<MainSource>AutoRes.dpr</MainSource>
6+
<Base>True</Base>
7+
<Config Condition="'$(Config)'==''">Debug</Config>
8+
<Platform>Win32</Platform>
9+
<AppType>Application</AppType>
10+
<FrameworkType>VCL</FrameworkType>
11+
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
12+
</PropertyGroup>
13+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
14+
<Base>true</Base>
15+
</PropertyGroup>
16+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
17+
<Cfg_1>true</Cfg_1>
18+
<CfgParent>Base</CfgParent>
19+
<Base>true</Base>
20+
</PropertyGroup>
21+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
22+
<Cfg_2>true</Cfg_2>
23+
<CfgParent>Base</CfgParent>
24+
<Base>true</Base>
25+
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Base)'!=''">
27+
<DCC_ImageBase>00400000</DCC_ImageBase>
28+
<DCC_DcuOutput>.\$(Config)\$(Platform)</DCC_DcuOutput>
29+
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;$(DCC_UnitAlias)</DCC_UnitAlias>
30+
<DCC_ExeOutput>.\$(Config)\$(Platform)</DCC_ExeOutput>
31+
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
33+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
34+
<DCC_Optimize>false</DCC_Optimize>
35+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
36+
</PropertyGroup>
37+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
38+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
39+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
40+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
41+
<DCC_DebugInformation>false</DCC_DebugInformation>
42+
</PropertyGroup>
43+
<ItemGroup>
44+
<DelphiCompile Include="AutoRes.dpr">
45+
<MainSource>MainSource</MainSource>
46+
</DelphiCompile>
47+
<RcCompile Include="res.rc">
48+
<ContainerId>RC</ContainerId>
49+
<ContainerId>RC</ContainerId>
50+
<Form>res.res</Form>
51+
</RcCompile>
52+
<DCCReference Include="uAutoRes.pas">
53+
<Form>frmAutoRes</Form>
54+
</DCCReference>
55+
<DCCReference Include="uJson.pas"/>
56+
<DCCReference Include="EncdDecd.pas"/>
57+
<BuildConfiguration Include="Release">
58+
<Key>Cfg_2</Key>
59+
<CfgParent>Base</CfgParent>
60+
</BuildConfiguration>
61+
<BuildConfiguration Include="Base">
62+
<Key>Base</Key>
63+
</BuildConfiguration>
64+
<BuildConfiguration Include="Debug">
65+
<Key>Cfg_1</Key>
66+
<CfgParent>Base</CfgParent>
67+
</BuildConfiguration>
68+
</ItemGroup>
69+
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
70+
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
71+
<ProjectExtensions>
72+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
73+
<Borland.ProjectType/>
74+
<BorlandProject>
75+
<Delphi.Personality>
76+
<VersionInfo>
77+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
78+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
79+
<VersionInfo Name="MajorVer">1</VersionInfo>
80+
<VersionInfo Name="MinorVer">0</VersionInfo>
81+
<VersionInfo Name="Release">0</VersionInfo>
82+
<VersionInfo Name="Build">0</VersionInfo>
83+
<VersionInfo Name="Debug">False</VersionInfo>
84+
<VersionInfo Name="PreRelease">False</VersionInfo>
85+
<VersionInfo Name="Special">False</VersionInfo>
86+
<VersionInfo Name="Private">False</VersionInfo>
87+
<VersionInfo Name="DLL">False</VersionInfo>
88+
<VersionInfo Name="Locale">2052</VersionInfo>
89+
<VersionInfo Name="CodePage">936</VersionInfo>
90+
</VersionInfo>
91+
<VersionInfoKeys>
92+
<VersionInfoKeys Name="CompanyName"/>
93+
<VersionInfoKeys Name="FileDescription"/>
94+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
95+
<VersionInfoKeys Name="InternalName"/>
96+
<VersionInfoKeys Name="LegalCopyright"/>
97+
<VersionInfoKeys Name="LegalTrademarks"/>
98+
<VersionInfoKeys Name="OriginalFilename"/>
99+
<VersionInfoKeys Name="ProductName"/>
100+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
101+
<VersionInfoKeys Name="Comments"/>
102+
</VersionInfoKeys>
103+
<Excluded_Packages>
104+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k150.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
105+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp150.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
106+
</Excluded_Packages>
107+
<Source>
108+
<Source Name="MainSource">AutoRes.dpr</Source>
109+
</Source>
110+
</Delphi.Personality>
111+
<Platforms>
112+
<Platform value="Win32">True</Platform>
113+
</Platforms>
114+
</BorlandProject>
115+
<ProjectFileVersion>12</ProjectFileVersion>
116+
</ProjectExtensions>
117+
</Project>

AutoRes.res

96.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)