Commit 412c6e1faeab866d7b08009d1a3682382b3fa1de

Authored by Eric Menezes Noronha
2 parents 3ff1d34c d4c3f124
Exists in master

Merge branch 'master' of https://github.com/lightbase/agente-windows

MapaTesteProj/AcessoMapaTeste.dcu
No preview for this file type
MapaTesteProj/AcessoMapaTeste.dfm
... ... @@ -1,159 +0,0 @@
1   -object frmAcesso: TfrmAcesso
2   - Left = 0
3   - Top = 0
4   - Caption = 'Acessar'
5   - ClientHeight = 309
6   - ClientWidth = 624
7   - Color = clBtnFace
8   - Font.Charset = DEFAULT_CHARSET
9   - Font.Color = clWindowText
10   - Font.Height = -11
11   - Font.Name = 'Tahoma'
12   - Font.Style = []
13   - OldCreateOrder = False
14   - PixelsPerInch = 96
15   - TextHeight = 13
16   - object btAcesso: TButton
17   - Left = 177
18   - Top = 260
19   - Width = 105
20   - Height = 33
21   - Caption = 'Acessar'
22   - Default = True
23   - Enabled = False
24   - Font.Charset = DEFAULT_CHARSET
25   - Font.Color = clWindowText
26   - Font.Height = -16
27   - Font.Name = 'Arial'
28   - Font.Style = [fsBold]
29   - ParentFont = False
30   - TabOrder = 0
31   - end
32   - object btCancela: TButton
33   - Left = 333
34   - Top = 260
35   - Width = 105
36   - Height = 33
37   - Caption = 'Cancelar'
38   - Font.Charset = DEFAULT_CHARSET
39   - Font.Color = clWindowText
40   - Font.Height = -16
41   - Font.Name = 'Arial'
42   - Font.Style = [fsBold]
43   - ParentFont = False
44   - TabOrder = 1
45   - end
46   - object pnAcesso: TPanel
47   - Left = 2
48   - Top = 3
49   - Width = 602
50   - Height = 196
51   - BevelInner = bvRaised
52   - BevelOuter = bvLowered
53   - TabOrder = 2
54   - object lbNomeUsuarioAcesso: TLabel
55   - Left = 109
56   - Top = 42
57   - Width = 127
58   - Height = 20
59   - Caption = 'Nome de Usu'#225'rio:'
60   - Font.Charset = DEFAULT_CHARSET
61   - Font.Color = clWindowText
62   - Font.Height = -16
63   - Font.Name = 'MS Sans Serif'
64   - Font.Style = []
65   - ParentFont = False
66   - Visible = False
67   - end
68   - object lbSenhaAcesso: TLabel
69   - Left = 106
70   - Top = 82
71   - Width = 130
72   - Height = 20
73   - Caption = 'Senha de Acesso:'
74   - Font.Charset = DEFAULT_CHARSET
75   - Font.Color = clWindowText
76   - Font.Height = -16
77   - Font.Name = 'MS Sans Serif'
78   - Font.Style = []
79   - ParentFont = False
80   - Visible = False
81   - end
82   - object lbAviso: TLabel
83   - Left = 4
84   - Top = 171
85   - Width = 593
86   - Height = 13
87   - Alignment = taCenter
88   - AutoSize = False
89   - Font.Charset = DEFAULT_CHARSET
90   - Font.Color = clNavy
91   - Font.Height = -11
92   - Font.Name = 'MS Sans Serif'
93   - Font.Style = []
94   - ParentFont = False
95   - end
96   - object edNomeUsuarioAcesso: TEdit
97   - Left = 239
98   - Top = 39
99   - Width = 250
100   - Height = 28
101   - Font.Charset = DEFAULT_CHARSET
102   - Font.Color = clWindowText
103   - Font.Height = -16
104   - Font.Name = 'MS Sans Serif'
105   - Font.Style = []
106   - MaxLength = 20
107   - ParentFont = False
108   - TabOrder = 0
109   - Visible = False
110   - end
111   - object edSenhaAcesso: TEdit
112   - Left = 239
113   - Top = 79
114   - Width = 250
115   - Height = 28
116   - Font.Charset = DEFAULT_CHARSET
117   - Font.Color = clWindowText
118   - Font.Height = -16
119   - Font.Name = 'MS Sans Serif'
120   - Font.Style = []
121   - ParentFont = False
122   - PasswordChar = #7
123   - TabOrder = 1
124   - Visible = False
125   - end
126   - end
127   - object pnMessageBox: TPanel
128   - Left = 1
129   - Top = 198
130   - Width = 602
131   - Height = 45
132   - BevelInner = bvLowered
133   - Color = clGradientInactiveCaption
134   - Font.Charset = DEFAULT_CHARSET
135   - Font.Color = clGradientActiveCaption
136   - Font.Height = -13
137   - Font.Name = 'Arial'
138   - Font.Style = []
139   - ParentFont = False
140   - TabOrder = 3
141   - Visible = False
142   - object lbMensagens: TLabel
143   - Left = 2
144   - Top = 2
145   - Width = 598
146   - Height = 41
147   - Align = alClient
148   - Alignment = taCenter
149   - AutoSize = False
150   - Font.Charset = DEFAULT_CHARSET
151   - Font.Color = clWindowText
152   - Font.Height = -13
153   - Font.Name = 'MS Sans Serif'
154   - Font.Style = []
155   - ParentFont = False
156   - Layout = tlCenter
157   - end
158   - end
159   -end
MapaTesteProj/AcessoMapaTeste.pas
... ... @@ -1,34 +0,0 @@
1   -unit AcessoMapaTeste;
2   -
3   -interface
4   -
5   -uses
6   - Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
7   - Dialogs, StdCtrls, ExtCtrls;
8   -
9   -type
10   - TfrmAcesso = class(TForm)
11   - btAcesso: TButton;
12   - btCancela: TButton;
13   - pnAcesso: TPanel;
14   - lbNomeUsuarioAcesso: TLabel;
15   - lbSenhaAcesso: TLabel;
16   - lbAviso: TLabel;
17   - edNomeUsuarioAcesso: TEdit;
18   - edSenhaAcesso: TEdit;
19   - pnMessageBox: TPanel;
20   - lbMensagens: TLabel;
21   - private
22   - { Private declarations }
23   - public
24   - { Public declarations }
25   - end;
26   -
27   -var
28   - frmAcesso: TfrmAcesso;
29   -
30   -implementation
31   -
32   -{$R *.dfm}
33   -
34   -end.
MapaTesteProj/MapaCACIC.exe
No preview for this file type
MapaTesteProj/MapaCACICpgfn.dpr
... ... @@ -1,41 +0,0 @@
1   -program MapaCACICpgfn;
2   -
3   -uses
4   - Forms,
5   - Windows,
6   - MapaTeste in 'MapaTeste.pas' {frmMapaCacic},
7   - CACIC_Comm in '..\CACIC_Comm.pas',
8   - CACIC_Library in '..\CACIC_Library.pas';
9   -
10   -{$R *.res}
11   -
12   -const APP_NAME = 'MapaCACICpgfn.exe';
13   -
14   -var hwind:HWND;
15   - oCacic : TCACIC;
16   -
17   -begin
18   - oCacic := TCACIC.Create();
19   -
20   - if( oCacic.isAppRunning( APP_NAME ) )
21   - then begin
22   - hwind := 0;
23   - repeat // The string 'My app' must match your App Title (below)
24   - hwind:=Windows.FindWindowEx(0,hwind,'TApplication', APP_NAME );
25   - until (hwind<>Application.Handle);
26   - IF (hwind<>0) then
27   - begin
28   - Windows.ShowWindow(hwind,SW_SHOWNORMAL);
29   - Windows.SetForegroundWindow(hwind);
30   - end;
31   - FreeMemory(0);
32   - end
33   - else
34   - begin
35   - Application.Initialize;
36   - Application.Title := 'MapaCACICpgfn';
37   - Application.CreateForm(TfrmMapaCacic, frmMapaCacic);
38   - Application.Run;
39   - end;
40   - oCacic.Free();
41   -end.
MapaTesteProj/MapaCACICpgfn.dproj
... ... @@ -1,40 +0,0 @@
1   -<?xml version="1.0" encoding="utf-8"?>
2   -<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3   - <PropertyGroup>
4   - <ProjectGuid>{4f42d5b9-4185-4233-9988-97f71c5d98fc}</ProjectGuid>
5   - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6   - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7   - <DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
8   - <DCC_DependencyCheckOutputName>..\..\Agentes_Windows_BINARIOS\MapaCACICpgfn.exe</DCC_DependencyCheckOutputName>
9   - <MainSource>MapaCACICpgfn.dpr</MainSource>
10   - </PropertyGroup>
11   - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
12   - <Version>7.0</Version>
13   - <DCC_DebugInformation>False</DCC_DebugInformation>
14   - <DCC_LocalDebugSymbols>False</DCC_LocalDebugSymbols>
15   - <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
16   - <DCC_Define>RELEASE</DCC_Define>
17   - </PropertyGroup>
18   - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19   - <Version>7.0</Version>
20   - <DCC_Define>DEBUG</DCC_Define>
21   - <DCC_ExeOutput>C:\devel\cacic\Agentes_Windows_BINARIOS</DCC_ExeOutput>
22   - </PropertyGroup>
23   - <ProjectExtensions>
24   - <Borland.Personality>Delphi.Personality</Borland.Personality>
25   - <Borland.ProjectType />
26   - <BorlandProject>
27   -<BorlandProject><Delphi.Personality><Parameters><Parameters Name="UseLauncher">False</Parameters><Parameters Name="LoadAllSymbols">True</Parameters><Parameters Name="LoadUnspecifiedSymbols">False</Parameters></Parameters><VersionInfo><VersionInfo Name="IncludeVerInfo">True</VersionInfo><VersionInfo Name="AutoIncBuild">False</VersionInfo><VersionInfo Name="MajorVer">2</VersionInfo><VersionInfo Name="MinorVer">8</VersionInfo><VersionInfo Name="Release">1</VersionInfo><VersionInfo Name="Build">1</VersionInfo><VersionInfo Name="Debug">False</VersionInfo><VersionInfo Name="PreRelease">False</VersionInfo><VersionInfo Name="Special">False</VersionInfo><VersionInfo Name="Private">False</VersionInfo><VersionInfo Name="DLL">False</VersionInfo><VersionInfo Name="Locale">1046</VersionInfo><VersionInfo Name="CodePage">1252</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys Name="CompanyName">Dataprev - Emp. de TI da Prev Social - URES/SESS</VersionInfoKeys><VersionInfoKeys Name="FileDescription">Sistema CACIC - Módulo para Verificação e Instalação de Estrutura Básica do Sistema CACIC</VersionInfoKeys><VersionInfoKeys Name="FileVersion">2.8.1.1</VersionInfoKeys><VersionInfoKeys Name="InternalName"></VersionInfoKeys><VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys><VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys><VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys><VersionInfoKeys Name="ProductName"></VersionInfoKeys><VersionInfoKeys Name="ProductVersion">3.0</VersionInfoKeys><VersionInfoKeys Name="Comments">Licença: GNU/LGPL</VersionInfoKeys></VersionInfoKeys><Source><Source Name="MainSource">MapaCACICpgfn.dpr</Source></Source></Delphi.Personality></BorlandProject></BorlandProject>
28   - </ProjectExtensions>
29   - <Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
30   - <ItemGroup>
31   - <DelphiCompile Include="MapaCACICpgfn.dpr">
32   - <MainSource>MainSource</MainSource>
33   - </DelphiCompile>
34   - <DCCReference Include="..\CACIC_Comm.pas" />
35   - <DCCReference Include="..\CACIC_Library.pas" />
36   - <DCCReference Include="MapaTeste.pas">
37   - <Form>frmMapaCacic</Form>
38   - </DCCReference>
39   - </ItemGroup>
40   -</Project>
41 0 \ No newline at end of file
MapaTesteProj/MapaCACICpgfn.res
No preview for this file type
MapaTesteProj/MapaCACICteste.dpr
... ... @@ -1,41 +0,0 @@
1   -program MapaCACICteste;
2   -
3   -uses
4   - Forms,
5   - Windows,
6   - MapaTeste in 'MapaTeste.pas' {frmMapaCacic},
7   - AcessoMapaTeste in 'AcessoMapaTeste.pas' {frmAcesso},
8   - CACIC_Comm in '..\CACIC_Comm.pas',
9   - CACIC_Library in '..\CACIC_Library.pas';
10   -
11   -{$R *.res}
12   -
13   -const APP_NAME = 'MapaCacicteste.exe';
14   -
15   -var hwind:HWND;
16   - oCacic : TCACIC;
17   -
18   -begin
19   - oCacic := TCACIC.Create();
20   -
21   - if( oCacic.isAppRunning( APP_NAME ) )
22   - then begin
23   - hwind := 0;
24   - repeat // The string 'My app' must match your App Title (below)
25   - hwind:=Windows.FindWindowEx(0,hwind,'TApplication', APP_NAME );
26   - until (hwind<>Application.Handle);
27   - IF (hwind<>0) then
28   - begin
29   - Windows.ShowWindow(hwind,SW_SHOWNORMAL);
30   - Windows.SetForegroundWindow(hwind);
31   - end;
32   - FreeMemory(0);
33   - end
34   - else
35   - begin
36   - Application.Initialize;
37   - Application.CreateForm(TfrmMapaCacic, frmMapaCacic);
38   - Application.Run;
39   - end;
40   - oCacic.Free();
41   -end.
MapaTesteProj/MapaCACICteste.dproj
... ... @@ -1,41 +0,0 @@
1   -<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2   - <PropertyGroup>
3   - <ProjectGuid>{4f42d5b9-4185-4233-9988-97f71c5d98fc}</ProjectGuid>
4   - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5   - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6   - <DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
7   - <DCC_DependencyCheckOutputName>MapaCACICteste.exe</DCC_DependencyCheckOutputName>
8   - <MainSource>MapaCACICteste.dpr</MainSource>
9   - </PropertyGroup>
10   - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
11   - <Version>7.0</Version>
12   - <DCC_DebugInformation>False</DCC_DebugInformation>
13   - <DCC_LocalDebugSymbols>False</DCC_LocalDebugSymbols>
14   - <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
15   - <DCC_Define>RELEASE</DCC_Define>
16   - </PropertyGroup>
17   - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18   - <Version>7.0</Version>
19   - <DCC_Define>DEBUG</DCC_Define>
20   - </PropertyGroup>
21   - <ProjectExtensions>
22   - <Borland.Personality>Delphi.Personality</Borland.Personality>
23   - <Borland.ProjectType />
24   - <BorlandProject>
25   -<BorlandProject><Delphi.Personality><Parameters><Parameters Name="UseLauncher">False</Parameters><Parameters Name="LoadAllSymbols">True</Parameters><Parameters Name="LoadUnspecifiedSymbols">False</Parameters></Parameters><VersionInfo><VersionInfo Name="IncludeVerInfo">False</VersionInfo><VersionInfo Name="AutoIncBuild">False</VersionInfo><VersionInfo Name="MajorVer">1</VersionInfo><VersionInfo Name="MinorVer">0</VersionInfo><VersionInfo Name="Release">0</VersionInfo><VersionInfo Name="Build">0</VersionInfo><VersionInfo Name="Debug">False</VersionInfo><VersionInfo Name="PreRelease">False</VersionInfo><VersionInfo Name="Special">False</VersionInfo><VersionInfo Name="Private">False</VersionInfo><VersionInfo Name="DLL">False</VersionInfo><VersionInfo Name="Locale">1046</VersionInfo><VersionInfo Name="CodePage">1252</VersionInfo></VersionInfo><VersionInfoKeys><VersionInfoKeys Name="CompanyName"></VersionInfoKeys><VersionInfoKeys Name="FileDescription"></VersionInfoKeys><VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys><VersionInfoKeys Name="InternalName"></VersionInfoKeys><VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys><VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys><VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys><VersionInfoKeys Name="ProductName"></VersionInfoKeys><VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys><VersionInfoKeys Name="Comments"></VersionInfoKeys></VersionInfoKeys><Source><Source Name="MainSource">MapaCACICteste.dpr</Source></Source></Delphi.Personality></BorlandProject></BorlandProject>
26   - </ProjectExtensions>
27   - <Import Project="$(MSBuildBinPath)\Borland.Delphi.Targets" />
28   - <ItemGroup>
29   - <DelphiCompile Include="MapaCACICteste.dpr">
30   - <MainSource>MainSource</MainSource>
31   - </DelphiCompile>
32   - <DCCReference Include="..\CACIC_Comm.pas" />
33   - <DCCReference Include="..\CACIC_Library.pas" />
34   - <DCCReference Include="AcessoMapaTeste.pas">
35   - <Form>frmAcesso</Form>
36   - </DCCReference>
37   - <DCCReference Include="MapaTeste.pas">
38   - <Form>frmMapaCacic</Form>
39   - </DCCReference>
40   - </ItemGroup>
41   -</Project>
42 0 \ No newline at end of file
MapaTesteProj/MapaCACICteste.dproj.local
... ... @@ -1,25 +0,0 @@
1   -<?xml version="1.0" encoding="utf-8"?>
2   -<BorlandProject>
3   - <Transactions>
4   - <Transaction>2013/10/25 15:08:21.585.dproj,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\Project1.dproj=C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTesteProj0.dproj</Transaction>
5   - <Transaction>2013/10/25 15:08:53.133.dproj,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTesteProj0.dproj=C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTesteProj0_2.dproj</Transaction>
6   - <Transaction>2013/10/25 15:17:19.101.pas,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\Unit1.pas=C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTeste.pas</Transaction>
7   - <Transaction>2013/10/25 15:17:19.101.dfm,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\Unit1.dfm=C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTeste.dfm</Transaction>
8   - <Transaction>2013/10/25 15:19:13.802.pas,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\Unit1.pas=C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\AcessoMapaTeste.pas</Transaction>
9   - <Transaction>2013/10/25 15:19:13.802.dfm,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\Unit1.dfm=C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\AcessoMapaTeste.dfm</Transaction>
10   - <Transaction>2013/10/25 15:20:11.034.pas,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\AcessoMapaTeste.pas=C:\Documents and Settings\adriano\Desktop\Mapa0.2\AcessoMapaTeste.pas</Transaction>
11   - <Transaction>2013/10/25 15:20:11.034.dfm,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\AcessoMapaTeste.dfm=C:\Documents and Settings\adriano\Desktop\Mapa0.2\AcessoMapaTeste.dfm</Transaction>
12   - <Transaction>2013/10/25 15:20:19.753.pas,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTeste.pas=C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTeste.pas</Transaction>
13   - <Transaction>2013/10/25 15:20:19.753.dfm,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTeste.dfm=C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTeste.dfm</Transaction>
14   - <Transaction>2013/10/25 15:20:21.487.dproj,C:\Documents and Settings\adriano\Meus documentos\RAD Studio\Projects\MapaTesteProj0_2.dproj=C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTesteProj0_2.dproj</Transaction>
15   - <Transaction>2013/11/05 11:28:21.475.dproj,C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTesteProj0_2.dproj=C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTesteProj02.dproj</Transaction>
16   - <Transaction>2013/11/11 16:28:39.095.pas,C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTeste.pas=C:\devel\cacic\agente-windows\MapaTesteProj\MapaTeste.pas</Transaction>
17   - <Transaction>2013/11/11 16:28:39.095.dfm,C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTeste.dfm=C:\devel\cacic\agente-windows\MapaTesteProj\MapaTeste.dfm</Transaction>
18   - <Transaction>2013/11/11 16:29:05.925.dproj,C:\Documents and Settings\adriano\Desktop\Mapa0.2\MapaTesteProj02.dproj=C:\devel\cacic\agente-windows\MapaTesteProj\MapaTesteProj02.dproj</Transaction>
19   - <Transaction>2013/11/11 16:29:36.615.pas,C:\Documents and Settings\adriano\Desktop\Mapa0.2\AcessoMapaTeste.pas=C:\devel\cacic\agente-windows\MapaTesteProj\AcessoMapaTeste.pas</Transaction>
20   - <Transaction>2013/11/11 16:29:36.615.dfm,C:\Documents and Settings\adriano\Desktop\Mapa0.2\AcessoMapaTeste.dfm=C:\devel\cacic\agente-windows\MapaTesteProj\AcessoMapaTeste.dfm</Transaction>
21   - <Transaction>2013/11/12 18:18:32.539.dproj,C:\devel\cacic\agente-windows\MapaTesteProj\MapaTesteProj02.dproj=C:\devel\cacic\agente-windows\MapaTesteProj\MapaCACIC.dproj</Transaction>
22   - <Transaction>2013/11/22 16:35:45.536.dproj,C:\devel\cacic\agente-windows\MapaTesteProj\MapaCACIC.dproj=C:\devel\cacic\agente-windows\MapaTesteProj\MapaCACIC_teste.dproj</Transaction>
23   - <Transaction>2013/11/22 16:36:47.288.dproj,C:\devel\cacic\agente-windows\MapaTesteProj\MapaCACIC_teste.dproj=C:\devel\cacic\agente-windows\MapaTesteProj\MapaCACICteste.dproj</Transaction>
24   - </Transactions>
25   -</BorlandProject>
MapaTesteProj/MapaCACICteste.identcache
No preview for this file type
MapaTesteProj/MapaCACICteste.res
No preview for this file type
MapaTesteProj/MapaTesteProj02.identcache
No preview for this file type
MapaTesteProj/iphist.dat