qoobaa-pg 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +10 -0
 - data/.gitignore +5 -0
 - data/BSD +23 -0
 - data/ChangeLog +266 -0
 - data/Contributors +29 -0
 - data/GPL +340 -0
 - data/LICENSE +58 -0
 - data/README +125 -0
 - data/Rakefile +50 -0
 - data/VERSION +1 -0
 - data/doc/postgres.html +278 -0
 - data/doc/postgres.jp.html +256 -0
 - data/ext/compat.c +541 -0
 - data/ext/compat.h +180 -0
 - data/ext/extconf.rb +87 -0
 - data/ext/mingw/Rakefile +24 -0
 - data/ext/mingw/build.rake +40 -0
 - data/ext/mkmf.log +316 -0
 - data/ext/mkrf_config.rb +138 -0
 - data/ext/pg.c +3569 -0
 - data/ext/pg.h +60 -0
 - data/ext/vc/pg.sln +26 -0
 - data/ext/vc/pg_18/pg.vcproj +216 -0
 - data/ext/vc/pg_19/pg_19.vcproj +209 -0
 - data/pg.gemspec +73 -0
 - data/sample/losample.rb +47 -0
 - data/sample/psql.rb +1181 -0
 - data/sample/psqlHelp.rb +158 -0
 - data/sample/test1.rb +63 -0
 - data/sample/test2.rb +44 -0
 - data/sample/test4.rb +71 -0
 - data/spec/data/expected_trace.out +26 -0
 - data/spec/data/random_binary_data +0 -0
 - data/spec/pgconn_spec.rb +130 -0
 - data/spec/pgresult_spec.rb +112 -0
 - metadata +90 -0
 
    
        data/ext/pg.h
    ADDED
    
    | 
         @@ -0,0 +1,60 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #include <stdio.h>
         
     | 
| 
      
 2 
     | 
    
         
            +
            #include <stdlib.h>
         
     | 
| 
      
 3 
     | 
    
         
            +
            #include <sys/types.h>
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            #include "ruby.h"
         
     | 
| 
      
 6 
     | 
    
         
            +
            #include "libpq-fe.h"
         
     | 
| 
      
 7 
     | 
    
         
            +
            #include "libpq/libpq-fs.h"              /* large-object interface */
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            #include "compat.h"
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            #if RUBY_VM != 1
         
     | 
| 
      
 12 
     | 
    
         
            +
            #define RUBY_18_COMPAT
         
     | 
| 
      
 13 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            #ifndef RARRAY_LEN
         
     | 
| 
      
 16 
     | 
    
         
            +
            #define RARRAY_LEN(x) RARRAY((x))->len
         
     | 
| 
      
 17 
     | 
    
         
            +
            #endif /* RARRAY_LEN */
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            #ifndef RSTRING_LEN
         
     | 
| 
      
 20 
     | 
    
         
            +
            #define RSTRING_LEN(x) RSTRING((x))->len
         
     | 
| 
      
 21 
     | 
    
         
            +
            #endif /* RSTRING_LEN */
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            #ifndef RSTRING_PTR
         
     | 
| 
      
 24 
     | 
    
         
            +
            #define RSTRING_PTR(x) RSTRING((x))->ptr
         
     | 
| 
      
 25 
     | 
    
         
            +
            #endif /* RSTRING_PTR */
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            #ifndef StringValuePtr
         
     | 
| 
      
 28 
     | 
    
         
            +
            #define StringValuePtr(x) STR2CSTR(x)
         
     | 
| 
      
 29 
     | 
    
         
            +
            #endif /* StringValuePtr */
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            #ifdef RUBY_18_COMPAT
         
     | 
| 
      
 32 
     | 
    
         
            +
            #define rb_io_stdio_file GetWriteFile
         
     | 
| 
      
 33 
     | 
    
         
            +
            #include "rubyio.h"
         
     | 
| 
      
 34 
     | 
    
         
            +
            #else
         
     | 
| 
      
 35 
     | 
    
         
            +
            #include "ruby/io.h"
         
     | 
| 
      
 36 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            // Different string conversions for ruby 1.8 and ruby 1.9. For 1.9,
         
     | 
| 
      
 39 
     | 
    
         
            +
            // we need to set the encoding of the string. Stolen from Redcloth.
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            #ifdef HAVE_RUBY_ENCODING_H
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            // For Ruby 1.9
         
     | 
| 
      
 44 
     | 
    
         
            +
            #include "ruby/encoding.h"
         
     | 
| 
      
 45 
     | 
    
         
            +
            #define STR_NEW(p,n) rb_enc_str_new((p),(n),rb_utf8_encoding())
         
     | 
| 
      
 46 
     | 
    
         
            +
            #define STR_NEW2(p) rb_enc_str_new((p),strlen(p),rb_utf8_encoding())
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            #else
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            // For Ruby 1.8
         
     | 
| 
      
 51 
     | 
    
         
            +
            #define STR_NEW(p,n) rb_str_new((p),(n))
         
     | 
| 
      
 52 
     | 
    
         
            +
            #define STR_NEW2(p) rb_str_new2((p))
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            #if defined(_WIN32)
         
     | 
| 
      
 57 
     | 
    
         
            +
            __declspec(dllexport)
         
     | 
| 
      
 58 
     | 
    
         
            +
            #endif
         
     | 
| 
      
 59 
     | 
    
         
            +
            void Init_pg(void);
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
    
        data/ext/vc/pg.sln
    ADDED
    
    | 
         @@ -0,0 +1,26 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            
         
     | 
| 
      
 2 
     | 
    
         
            +
            Microsoft Visual Studio Solution File, Format Version 10.00
         
     | 
| 
      
 3 
     | 
    
         
            +
            # Visual Studio 2008
         
     | 
| 
      
 4 
     | 
    
         
            +
            Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pg", "pg_18\pg.vcproj", "{9A8BF0C8-1D75-4DC0-8D84-BAEFD693795E}"
         
     | 
| 
      
 5 
     | 
    
         
            +
            EndProject
         
     | 
| 
      
 6 
     | 
    
         
            +
            Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pg_19", "pg_19\pg_19.vcproj", "{2EE30C74-074F-4611-B39B-38D5F3C9B071}"
         
     | 
| 
      
 7 
     | 
    
         
            +
            EndProject
         
     | 
| 
      
 8 
     | 
    
         
            +
            Global
         
     | 
| 
      
 9 
     | 
    
         
            +
            	GlobalSection(SolutionConfigurationPlatforms) = preSolution
         
     | 
| 
      
 10 
     | 
    
         
            +
            		Debug|Win32 = Debug|Win32
         
     | 
| 
      
 11 
     | 
    
         
            +
            		Release|Win32 = Release|Win32
         
     | 
| 
      
 12 
     | 
    
         
            +
            	EndGlobalSection
         
     | 
| 
      
 13 
     | 
    
         
            +
            	GlobalSection(ProjectConfigurationPlatforms) = postSolution
         
     | 
| 
      
 14 
     | 
    
         
            +
            		{9A8BF0C8-1D75-4DC0-8D84-BAEFD693795E}.Debug|Win32.ActiveCfg = Debug|Win32
         
     | 
| 
      
 15 
     | 
    
         
            +
            		{9A8BF0C8-1D75-4DC0-8D84-BAEFD693795E}.Debug|Win32.Build.0 = Debug|Win32
         
     | 
| 
      
 16 
     | 
    
         
            +
            		{9A8BF0C8-1D75-4DC0-8D84-BAEFD693795E}.Release|Win32.ActiveCfg = Release|Win32
         
     | 
| 
      
 17 
     | 
    
         
            +
            		{9A8BF0C8-1D75-4DC0-8D84-BAEFD693795E}.Release|Win32.Build.0 = Release|Win32
         
     | 
| 
      
 18 
     | 
    
         
            +
            		{2EE30C74-074F-4611-B39B-38D5F3C9B071}.Debug|Win32.ActiveCfg = Debug|Win32
         
     | 
| 
      
 19 
     | 
    
         
            +
            		{2EE30C74-074F-4611-B39B-38D5F3C9B071}.Debug|Win32.Build.0 = Debug|Win32
         
     | 
| 
      
 20 
     | 
    
         
            +
            		{2EE30C74-074F-4611-B39B-38D5F3C9B071}.Release|Win32.ActiveCfg = Release|Win32
         
     | 
| 
      
 21 
     | 
    
         
            +
            		{2EE30C74-074F-4611-B39B-38D5F3C9B071}.Release|Win32.Build.0 = Release|Win32
         
     | 
| 
      
 22 
     | 
    
         
            +
            	EndGlobalSection
         
     | 
| 
      
 23 
     | 
    
         
            +
            	GlobalSection(SolutionProperties) = preSolution
         
     | 
| 
      
 24 
     | 
    
         
            +
            		HideSolutionNode = FALSE
         
     | 
| 
      
 25 
     | 
    
         
            +
            	EndGlobalSection
         
     | 
| 
      
 26 
     | 
    
         
            +
            EndGlobal
         
     | 
| 
         @@ -0,0 +1,216 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="Windows-1252"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <VisualStudioProject
         
     | 
| 
      
 3 
     | 
    
         
            +
            	ProjectType="Visual C++"
         
     | 
| 
      
 4 
     | 
    
         
            +
            	Version="9.00"
         
     | 
| 
      
 5 
     | 
    
         
            +
            	Name="pg"
         
     | 
| 
      
 6 
     | 
    
         
            +
            	ProjectGUID="{9A8BF0C8-1D75-4DC0-8D84-BAEFD693795E}"
         
     | 
| 
      
 7 
     | 
    
         
            +
            	RootNamespace="pg"
         
     | 
| 
      
 8 
     | 
    
         
            +
            	Keyword="Win32Proj"
         
     | 
| 
      
 9 
     | 
    
         
            +
            	TargetFrameworkVersion="196613"
         
     | 
| 
      
 10 
     | 
    
         
            +
            	>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<Platforms>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<Platform
         
     | 
| 
      
 13 
     | 
    
         
            +
            			Name="Win32"
         
     | 
| 
      
 14 
     | 
    
         
            +
            		/>
         
     | 
| 
      
 15 
     | 
    
         
            +
            	</Platforms>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	<ToolFiles>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</ToolFiles>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	<Configurations>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<Configuration
         
     | 
| 
      
 20 
     | 
    
         
            +
            			Name="Debug|Win32"
         
     | 
| 
      
 21 
     | 
    
         
            +
            			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
         
     | 
| 
      
 22 
     | 
    
         
            +
            			IntermediateDirectory="$(ConfigurationName)"
         
     | 
| 
      
 23 
     | 
    
         
            +
            			ConfigurationType="2"
         
     | 
| 
      
 24 
     | 
    
         
            +
            			CharacterSet="1"
         
     | 
| 
      
 25 
     | 
    
         
            +
            			>
         
     | 
| 
      
 26 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 27 
     | 
    
         
            +
            				Name="VCPreBuildEventTool"
         
     | 
| 
      
 28 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 29 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 30 
     | 
    
         
            +
            				Name="VCCustomBuildTool"
         
     | 
| 
      
 31 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 32 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 33 
     | 
    
         
            +
            				Name="VCXMLDataGeneratorTool"
         
     | 
| 
      
 34 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 35 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 36 
     | 
    
         
            +
            				Name="VCWebServiceProxyGeneratorTool"
         
     | 
| 
      
 37 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 38 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 39 
     | 
    
         
            +
            				Name="VCMIDLTool"
         
     | 
| 
      
 40 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 41 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 42 
     | 
    
         
            +
            				Name="VCCLCompilerTool"
         
     | 
| 
      
 43 
     | 
    
         
            +
            				Optimization="0"
         
     | 
| 
      
 44 
     | 
    
         
            +
            				AdditionalIncludeDirectories=""C:\Development\ruby\lib\ruby\1.8\i386-mswin32";C:\Development\msys\local\include"
         
     | 
| 
      
 45 
     | 
    
         
            +
            				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PG_EXPORTS;HAVE_LIBPQ_FE_H;HAVE_LIBPQ_LIBPQ_FS_H;HAVE_PQCONNECTIONUSEDPASSWORD;HAVE_PQISTHREADSAFE;HAVE_LO_CREATE;HAVE_PQPREPARE;HAVE_PQEXECPARAMS;HAVE_PQESCAPESTRING;HAVE_PQESCAPESTRINGCONN;HAVE_PG_ENCODING_TO_CHAR;HAVE_PQSETCLIENTENCODING"
         
     | 
| 
      
 46 
     | 
    
         
            +
            				MinimalRebuild="true"
         
     | 
| 
      
 47 
     | 
    
         
            +
            				BasicRuntimeChecks="3"
         
     | 
| 
      
 48 
     | 
    
         
            +
            				RuntimeLibrary="3"
         
     | 
| 
      
 49 
     | 
    
         
            +
            				UsePrecompiledHeader="0"
         
     | 
| 
      
 50 
     | 
    
         
            +
            				WarningLevel="3"
         
     | 
| 
      
 51 
     | 
    
         
            +
            				DebugInformationFormat="4"
         
     | 
| 
      
 52 
     | 
    
         
            +
            				DisableSpecificWarnings="4996"
         
     | 
| 
      
 53 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 54 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 55 
     | 
    
         
            +
            				Name="VCManagedResourceCompilerTool"
         
     | 
| 
      
 56 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 57 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 58 
     | 
    
         
            +
            				Name="VCResourceCompilerTool"
         
     | 
| 
      
 59 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 60 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 61 
     | 
    
         
            +
            				Name="VCPreLinkEventTool"
         
     | 
| 
      
 62 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 63 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 64 
     | 
    
         
            +
            				Name="VCLinkerTool"
         
     | 
| 
      
 65 
     | 
    
         
            +
            				AdditionalDependencies="libpq.lib msvcrt-ruby18.lib"
         
     | 
| 
      
 66 
     | 
    
         
            +
            				OutputFile="C:\Development\ruby\lib\ruby\gems\1.8\gems\pg-0.7.9.2009.03.14-x86-mswin32-60\lib\$(ProjectName).so"
         
     | 
| 
      
 67 
     | 
    
         
            +
            				LinkIncremental="2"
         
     | 
| 
      
 68 
     | 
    
         
            +
            				AdditionalLibraryDirectories="C:\Development\ruby\lib;C:\Development\msys\local\lib"
         
     | 
| 
      
 69 
     | 
    
         
            +
            				GenerateDebugInformation="true"
         
     | 
| 
      
 70 
     | 
    
         
            +
            				SubSystem="2"
         
     | 
| 
      
 71 
     | 
    
         
            +
            				TargetMachine="1"
         
     | 
| 
      
 72 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 73 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 74 
     | 
    
         
            +
            				Name="VCALinkTool"
         
     | 
| 
      
 75 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 76 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 77 
     | 
    
         
            +
            				Name="VCManifestTool"
         
     | 
| 
      
 78 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 79 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 80 
     | 
    
         
            +
            				Name="VCXDCMakeTool"
         
     | 
| 
      
 81 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 82 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 83 
     | 
    
         
            +
            				Name="VCBscMakeTool"
         
     | 
| 
      
 84 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 85 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 86 
     | 
    
         
            +
            				Name="VCFxCopTool"
         
     | 
| 
      
 87 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 88 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 89 
     | 
    
         
            +
            				Name="VCAppVerifierTool"
         
     | 
| 
      
 90 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 91 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 92 
     | 
    
         
            +
            				Name="VCPostBuildEventTool"
         
     | 
| 
      
 93 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 94 
     | 
    
         
            +
            		</Configuration>
         
     | 
| 
      
 95 
     | 
    
         
            +
            		<Configuration
         
     | 
| 
      
 96 
     | 
    
         
            +
            			Name="Release|Win32"
         
     | 
| 
      
 97 
     | 
    
         
            +
            			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
         
     | 
| 
      
 98 
     | 
    
         
            +
            			IntermediateDirectory="$(ConfigurationName)"
         
     | 
| 
      
 99 
     | 
    
         
            +
            			ConfigurationType="2"
         
     | 
| 
      
 100 
     | 
    
         
            +
            			CharacterSet="1"
         
     | 
| 
      
 101 
     | 
    
         
            +
            			WholeProgramOptimization="1"
         
     | 
| 
      
 102 
     | 
    
         
            +
            			>
         
     | 
| 
      
 103 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 104 
     | 
    
         
            +
            				Name="VCPreBuildEventTool"
         
     | 
| 
      
 105 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 106 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 107 
     | 
    
         
            +
            				Name="VCCustomBuildTool"
         
     | 
| 
      
 108 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 109 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 110 
     | 
    
         
            +
            				Name="VCXMLDataGeneratorTool"
         
     | 
| 
      
 111 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 112 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 113 
     | 
    
         
            +
            				Name="VCWebServiceProxyGeneratorTool"
         
     | 
| 
      
 114 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 115 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 116 
     | 
    
         
            +
            				Name="VCMIDLTool"
         
     | 
| 
      
 117 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 118 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 119 
     | 
    
         
            +
            				Name="VCCLCompilerTool"
         
     | 
| 
      
 120 
     | 
    
         
            +
            				Optimization="2"
         
     | 
| 
      
 121 
     | 
    
         
            +
            				EnableIntrinsicFunctions="true"
         
     | 
| 
      
 122 
     | 
    
         
            +
            				AdditionalIncludeDirectories="C:\Development\msys\local\include;"C:\Development\ruby\lib\ruby\1.8\i386-mswin32_90""
         
     | 
| 
      
 123 
     | 
    
         
            +
            				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PG_EXPORTS"
         
     | 
| 
      
 124 
     | 
    
         
            +
            				RuntimeLibrary="2"
         
     | 
| 
      
 125 
     | 
    
         
            +
            				EnableFunctionLevelLinking="true"
         
     | 
| 
      
 126 
     | 
    
         
            +
            				UsePrecompiledHeader="2"
         
     | 
| 
      
 127 
     | 
    
         
            +
            				WarningLevel="3"
         
     | 
| 
      
 128 
     | 
    
         
            +
            				DebugInformationFormat="3"
         
     | 
| 
      
 129 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 130 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 131 
     | 
    
         
            +
            				Name="VCManagedResourceCompilerTool"
         
     | 
| 
      
 132 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 133 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 134 
     | 
    
         
            +
            				Name="VCResourceCompilerTool"
         
     | 
| 
      
 135 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 136 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 137 
     | 
    
         
            +
            				Name="VCPreLinkEventTool"
         
     | 
| 
      
 138 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 139 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 140 
     | 
    
         
            +
            				Name="VCLinkerTool"
         
     | 
| 
      
 141 
     | 
    
         
            +
            				OutputFile="$(OutDir)\$(ProjectName).so"
         
     | 
| 
      
 142 
     | 
    
         
            +
            				LinkIncremental="1"
         
     | 
| 
      
 143 
     | 
    
         
            +
            				GenerateDebugInformation="true"
         
     | 
| 
      
 144 
     | 
    
         
            +
            				SubSystem="2"
         
     | 
| 
      
 145 
     | 
    
         
            +
            				OptimizeReferences="2"
         
     | 
| 
      
 146 
     | 
    
         
            +
            				EnableCOMDATFolding="2"
         
     | 
| 
      
 147 
     | 
    
         
            +
            				TargetMachine="1"
         
     | 
| 
      
 148 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 149 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 150 
     | 
    
         
            +
            				Name="VCALinkTool"
         
     | 
| 
      
 151 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 152 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 153 
     | 
    
         
            +
            				Name="VCManifestTool"
         
     | 
| 
      
 154 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 155 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 156 
     | 
    
         
            +
            				Name="VCXDCMakeTool"
         
     | 
| 
      
 157 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 158 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 159 
     | 
    
         
            +
            				Name="VCBscMakeTool"
         
     | 
| 
      
 160 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 161 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 162 
     | 
    
         
            +
            				Name="VCFxCopTool"
         
     | 
| 
      
 163 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 164 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 165 
     | 
    
         
            +
            				Name="VCAppVerifierTool"
         
     | 
| 
      
 166 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 167 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 168 
     | 
    
         
            +
            				Name="VCPostBuildEventTool"
         
     | 
| 
      
 169 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 170 
     | 
    
         
            +
            		</Configuration>
         
     | 
| 
      
 171 
     | 
    
         
            +
            	</Configurations>
         
     | 
| 
      
 172 
     | 
    
         
            +
            	<References>
         
     | 
| 
      
 173 
     | 
    
         
            +
            	</References>
         
     | 
| 
      
 174 
     | 
    
         
            +
            	<Files>
         
     | 
| 
      
 175 
     | 
    
         
            +
            		<Filter
         
     | 
| 
      
 176 
     | 
    
         
            +
            			Name="Source Files"
         
     | 
| 
      
 177 
     | 
    
         
            +
            			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
         
     | 
| 
      
 178 
     | 
    
         
            +
            			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
         
     | 
| 
      
 179 
     | 
    
         
            +
            			>
         
     | 
| 
      
 180 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 181 
     | 
    
         
            +
            				RelativePath="..\..\compat.c"
         
     | 
| 
      
 182 
     | 
    
         
            +
            				>
         
     | 
| 
      
 183 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 184 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 185 
     | 
    
         
            +
            				RelativePath="..\..\pg.c"
         
     | 
| 
      
 186 
     | 
    
         
            +
            				>
         
     | 
| 
      
 187 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 188 
     | 
    
         
            +
            		</Filter>
         
     | 
| 
      
 189 
     | 
    
         
            +
            		<Filter
         
     | 
| 
      
 190 
     | 
    
         
            +
            			Name="Header Files"
         
     | 
| 
      
 191 
     | 
    
         
            +
            			Filter="h;hpp;hxx;hm;inl;inc;xsd"
         
     | 
| 
      
 192 
     | 
    
         
            +
            			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
         
     | 
| 
      
 193 
     | 
    
         
            +
            			>
         
     | 
| 
      
 194 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 195 
     | 
    
         
            +
            				RelativePath="..\..\compat.h"
         
     | 
| 
      
 196 
     | 
    
         
            +
            				>
         
     | 
| 
      
 197 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 198 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 199 
     | 
    
         
            +
            				RelativePath="..\..\pg.h"
         
     | 
| 
      
 200 
     | 
    
         
            +
            				>
         
     | 
| 
      
 201 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 202 
     | 
    
         
            +
            		</Filter>
         
     | 
| 
      
 203 
     | 
    
         
            +
            		<Filter
         
     | 
| 
      
 204 
     | 
    
         
            +
            			Name="Resource Files"
         
     | 
| 
      
 205 
     | 
    
         
            +
            			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
         
     | 
| 
      
 206 
     | 
    
         
            +
            			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
         
     | 
| 
      
 207 
     | 
    
         
            +
            			>
         
     | 
| 
      
 208 
     | 
    
         
            +
            		</Filter>
         
     | 
| 
      
 209 
     | 
    
         
            +
            		<File
         
     | 
| 
      
 210 
     | 
    
         
            +
            			RelativePath=".\ReadMe.txt"
         
     | 
| 
      
 211 
     | 
    
         
            +
            			>
         
     | 
| 
      
 212 
     | 
    
         
            +
            		</File>
         
     | 
| 
      
 213 
     | 
    
         
            +
            	</Files>
         
     | 
| 
      
 214 
     | 
    
         
            +
            	<Globals>
         
     | 
| 
      
 215 
     | 
    
         
            +
            	</Globals>
         
     | 
| 
      
 216 
     | 
    
         
            +
            </VisualStudioProject>
         
     | 
| 
         @@ -0,0 +1,209 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="Windows-1252"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <VisualStudioProject
         
     | 
| 
      
 3 
     | 
    
         
            +
            	ProjectType="Visual C++"
         
     | 
| 
      
 4 
     | 
    
         
            +
            	Version="9.00"
         
     | 
| 
      
 5 
     | 
    
         
            +
            	Name="pg_19"
         
     | 
| 
      
 6 
     | 
    
         
            +
            	ProjectGUID="{2EE30C74-074F-4611-B39B-38D5F3C9B071}"
         
     | 
| 
      
 7 
     | 
    
         
            +
            	RootNamespace="pg_19"
         
     | 
| 
      
 8 
     | 
    
         
            +
            	Keyword="Win32Proj"
         
     | 
| 
      
 9 
     | 
    
         
            +
            	TargetFrameworkVersion="196613"
         
     | 
| 
      
 10 
     | 
    
         
            +
            	>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<Platforms>
         
     | 
| 
      
 12 
     | 
    
         
            +
            		<Platform
         
     | 
| 
      
 13 
     | 
    
         
            +
            			Name="Win32"
         
     | 
| 
      
 14 
     | 
    
         
            +
            		/>
         
     | 
| 
      
 15 
     | 
    
         
            +
            	</Platforms>
         
     | 
| 
      
 16 
     | 
    
         
            +
            	<ToolFiles>
         
     | 
| 
      
 17 
     | 
    
         
            +
            	</ToolFiles>
         
     | 
| 
      
 18 
     | 
    
         
            +
            	<Configurations>
         
     | 
| 
      
 19 
     | 
    
         
            +
            		<Configuration
         
     | 
| 
      
 20 
     | 
    
         
            +
            			Name="Debug|Win32"
         
     | 
| 
      
 21 
     | 
    
         
            +
            			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
         
     | 
| 
      
 22 
     | 
    
         
            +
            			IntermediateDirectory="$(ConfigurationName)"
         
     | 
| 
      
 23 
     | 
    
         
            +
            			ConfigurationType="2"
         
     | 
| 
      
 24 
     | 
    
         
            +
            			CharacterSet="1"
         
     | 
| 
      
 25 
     | 
    
         
            +
            			>
         
     | 
| 
      
 26 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 27 
     | 
    
         
            +
            				Name="VCPreBuildEventTool"
         
     | 
| 
      
 28 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 29 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 30 
     | 
    
         
            +
            				Name="VCCustomBuildTool"
         
     | 
| 
      
 31 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 32 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 33 
     | 
    
         
            +
            				Name="VCXMLDataGeneratorTool"
         
     | 
| 
      
 34 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 35 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 36 
     | 
    
         
            +
            				Name="VCWebServiceProxyGeneratorTool"
         
     | 
| 
      
 37 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 38 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 39 
     | 
    
         
            +
            				Name="VCMIDLTool"
         
     | 
| 
      
 40 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 41 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 42 
     | 
    
         
            +
            				Name="VCCLCompilerTool"
         
     | 
| 
      
 43 
     | 
    
         
            +
            				Optimization="0"
         
     | 
| 
      
 44 
     | 
    
         
            +
            				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;PG_19_EXPORTS"
         
     | 
| 
      
 45 
     | 
    
         
            +
            				MinimalRebuild="true"
         
     | 
| 
      
 46 
     | 
    
         
            +
            				BasicRuntimeChecks="3"
         
     | 
| 
      
 47 
     | 
    
         
            +
            				RuntimeLibrary="3"
         
     | 
| 
      
 48 
     | 
    
         
            +
            				UsePrecompiledHeader="2"
         
     | 
| 
      
 49 
     | 
    
         
            +
            				WarningLevel="3"
         
     | 
| 
      
 50 
     | 
    
         
            +
            				DebugInformationFormat="4"
         
     | 
| 
      
 51 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 52 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 53 
     | 
    
         
            +
            				Name="VCManagedResourceCompilerTool"
         
     | 
| 
      
 54 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 55 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 56 
     | 
    
         
            +
            				Name="VCResourceCompilerTool"
         
     | 
| 
      
 57 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 58 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 59 
     | 
    
         
            +
            				Name="VCPreLinkEventTool"
         
     | 
| 
      
 60 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 61 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 62 
     | 
    
         
            +
            				Name="VCLinkerTool"
         
     | 
| 
      
 63 
     | 
    
         
            +
            				LinkIncremental="2"
         
     | 
| 
      
 64 
     | 
    
         
            +
            				GenerateDebugInformation="true"
         
     | 
| 
      
 65 
     | 
    
         
            +
            				SubSystem="2"
         
     | 
| 
      
 66 
     | 
    
         
            +
            				TargetMachine="1"
         
     | 
| 
      
 67 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 68 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 69 
     | 
    
         
            +
            				Name="VCALinkTool"
         
     | 
| 
      
 70 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 71 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 72 
     | 
    
         
            +
            				Name="VCManifestTool"
         
     | 
| 
      
 73 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 74 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 75 
     | 
    
         
            +
            				Name="VCXDCMakeTool"
         
     | 
| 
      
 76 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 77 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 78 
     | 
    
         
            +
            				Name="VCBscMakeTool"
         
     | 
| 
      
 79 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 80 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 81 
     | 
    
         
            +
            				Name="VCFxCopTool"
         
     | 
| 
      
 82 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 83 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 84 
     | 
    
         
            +
            				Name="VCAppVerifierTool"
         
     | 
| 
      
 85 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 86 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 87 
     | 
    
         
            +
            				Name="VCPostBuildEventTool"
         
     | 
| 
      
 88 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 89 
     | 
    
         
            +
            		</Configuration>
         
     | 
| 
      
 90 
     | 
    
         
            +
            		<Configuration
         
     | 
| 
      
 91 
     | 
    
         
            +
            			Name="Release|Win32"
         
     | 
| 
      
 92 
     | 
    
         
            +
            			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
         
     | 
| 
      
 93 
     | 
    
         
            +
            			IntermediateDirectory="$(ConfigurationName)"
         
     | 
| 
      
 94 
     | 
    
         
            +
            			ConfigurationType="2"
         
     | 
| 
      
 95 
     | 
    
         
            +
            			CharacterSet="1"
         
     | 
| 
      
 96 
     | 
    
         
            +
            			WholeProgramOptimization="1"
         
     | 
| 
      
 97 
     | 
    
         
            +
            			>
         
     | 
| 
      
 98 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 99 
     | 
    
         
            +
            				Name="VCPreBuildEventTool"
         
     | 
| 
      
 100 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 101 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 102 
     | 
    
         
            +
            				Name="VCCustomBuildTool"
         
     | 
| 
      
 103 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 104 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 105 
     | 
    
         
            +
            				Name="VCXMLDataGeneratorTool"
         
     | 
| 
      
 106 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 107 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 108 
     | 
    
         
            +
            				Name="VCWebServiceProxyGeneratorTool"
         
     | 
| 
      
 109 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 110 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 111 
     | 
    
         
            +
            				Name="VCMIDLTool"
         
     | 
| 
      
 112 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 113 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 114 
     | 
    
         
            +
            				Name="VCCLCompilerTool"
         
     | 
| 
      
 115 
     | 
    
         
            +
            				Optimization="2"
         
     | 
| 
      
 116 
     | 
    
         
            +
            				EnableIntrinsicFunctions="true"
         
     | 
| 
      
 117 
     | 
    
         
            +
            				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PG_19_EXPORTS"
         
     | 
| 
      
 118 
     | 
    
         
            +
            				RuntimeLibrary="2"
         
     | 
| 
      
 119 
     | 
    
         
            +
            				EnableFunctionLevelLinking="true"
         
     | 
| 
      
 120 
     | 
    
         
            +
            				UsePrecompiledHeader="2"
         
     | 
| 
      
 121 
     | 
    
         
            +
            				WarningLevel="3"
         
     | 
| 
      
 122 
     | 
    
         
            +
            				DebugInformationFormat="3"
         
     | 
| 
      
 123 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 124 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 125 
     | 
    
         
            +
            				Name="VCManagedResourceCompilerTool"
         
     | 
| 
      
 126 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 127 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 128 
     | 
    
         
            +
            				Name="VCResourceCompilerTool"
         
     | 
| 
      
 129 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 130 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 131 
     | 
    
         
            +
            				Name="VCPreLinkEventTool"
         
     | 
| 
      
 132 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 133 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 134 
     | 
    
         
            +
            				Name="VCLinkerTool"
         
     | 
| 
      
 135 
     | 
    
         
            +
            				LinkIncremental="1"
         
     | 
| 
      
 136 
     | 
    
         
            +
            				GenerateDebugInformation="true"
         
     | 
| 
      
 137 
     | 
    
         
            +
            				SubSystem="2"
         
     | 
| 
      
 138 
     | 
    
         
            +
            				OptimizeReferences="2"
         
     | 
| 
      
 139 
     | 
    
         
            +
            				EnableCOMDATFolding="2"
         
     | 
| 
      
 140 
     | 
    
         
            +
            				TargetMachine="1"
         
     | 
| 
      
 141 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 142 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 143 
     | 
    
         
            +
            				Name="VCALinkTool"
         
     | 
| 
      
 144 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 145 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 146 
     | 
    
         
            +
            				Name="VCManifestTool"
         
     | 
| 
      
 147 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 148 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 149 
     | 
    
         
            +
            				Name="VCXDCMakeTool"
         
     | 
| 
      
 150 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 151 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 152 
     | 
    
         
            +
            				Name="VCBscMakeTool"
         
     | 
| 
      
 153 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 154 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 155 
     | 
    
         
            +
            				Name="VCFxCopTool"
         
     | 
| 
      
 156 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 157 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 158 
     | 
    
         
            +
            				Name="VCAppVerifierTool"
         
     | 
| 
      
 159 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 160 
     | 
    
         
            +
            			<Tool
         
     | 
| 
      
 161 
     | 
    
         
            +
            				Name="VCPostBuildEventTool"
         
     | 
| 
      
 162 
     | 
    
         
            +
            			/>
         
     | 
| 
      
 163 
     | 
    
         
            +
            		</Configuration>
         
     | 
| 
      
 164 
     | 
    
         
            +
            	</Configurations>
         
     | 
| 
      
 165 
     | 
    
         
            +
            	<References>
         
     | 
| 
      
 166 
     | 
    
         
            +
            	</References>
         
     | 
| 
      
 167 
     | 
    
         
            +
            	<Files>
         
     | 
| 
      
 168 
     | 
    
         
            +
            		<Filter
         
     | 
| 
      
 169 
     | 
    
         
            +
            			Name="Source Files"
         
     | 
| 
      
 170 
     | 
    
         
            +
            			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
         
     | 
| 
      
 171 
     | 
    
         
            +
            			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
         
     | 
| 
      
 172 
     | 
    
         
            +
            			>
         
     | 
| 
      
 173 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 174 
     | 
    
         
            +
            				RelativePath="..\..\compat.c"
         
     | 
| 
      
 175 
     | 
    
         
            +
            				>
         
     | 
| 
      
 176 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 177 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 178 
     | 
    
         
            +
            				RelativePath="..\..\pg.c"
         
     | 
| 
      
 179 
     | 
    
         
            +
            				>
         
     | 
| 
      
 180 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 181 
     | 
    
         
            +
            		</Filter>
         
     | 
| 
      
 182 
     | 
    
         
            +
            		<Filter
         
     | 
| 
      
 183 
     | 
    
         
            +
            			Name="Header Files"
         
     | 
| 
      
 184 
     | 
    
         
            +
            			Filter="h;hpp;hxx;hm;inl;inc;xsd"
         
     | 
| 
      
 185 
     | 
    
         
            +
            			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
         
     | 
| 
      
 186 
     | 
    
         
            +
            			>
         
     | 
| 
      
 187 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 188 
     | 
    
         
            +
            				RelativePath="..\..\compat.h"
         
     | 
| 
      
 189 
     | 
    
         
            +
            				>
         
     | 
| 
      
 190 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 191 
     | 
    
         
            +
            			<File
         
     | 
| 
      
 192 
     | 
    
         
            +
            				RelativePath="..\..\pg.h"
         
     | 
| 
      
 193 
     | 
    
         
            +
            				>
         
     | 
| 
      
 194 
     | 
    
         
            +
            			</File>
         
     | 
| 
      
 195 
     | 
    
         
            +
            		</Filter>
         
     | 
| 
      
 196 
     | 
    
         
            +
            		<Filter
         
     | 
| 
      
 197 
     | 
    
         
            +
            			Name="Resource Files"
         
     | 
| 
      
 198 
     | 
    
         
            +
            			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
         
     | 
| 
      
 199 
     | 
    
         
            +
            			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
         
     | 
| 
      
 200 
     | 
    
         
            +
            			>
         
     | 
| 
      
 201 
     | 
    
         
            +
            		</Filter>
         
     | 
| 
      
 202 
     | 
    
         
            +
            		<File
         
     | 
| 
      
 203 
     | 
    
         
            +
            			RelativePath=".\ReadMe.txt"
         
     | 
| 
      
 204 
     | 
    
         
            +
            			>
         
     | 
| 
      
 205 
     | 
    
         
            +
            		</File>
         
     | 
| 
      
 206 
     | 
    
         
            +
            	</Files>
         
     | 
| 
      
 207 
     | 
    
         
            +
            	<Globals>
         
     | 
| 
      
 208 
     | 
    
         
            +
            	</Globals>
         
     | 
| 
      
 209 
     | 
    
         
            +
            </VisualStudioProject>
         
     |