summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2022-02-15 19:40:06 +0000
committerRobin Watts <Robin.Watts@artifex.com>2022-02-16 12:13:50 +0000
commit8ab9ed0869e1e010c1d6bd604462875d1a915f47 (patch)
tree80704f2e44b9144475227cec7582dfd674ba54a8 /windows
parent898af912a11457c4c0e0dec7d058e3336b7c59e2 (diff)
downloadghostpdl-8ab9ed0869e1e010c1d6bd604462875d1a915f47.tar.gz
Move pdfi warning and error definitions into their own file.
This avoids having 2 tables of errors (enum and error strings) defined in 2 separate files that need to be kept in sync. Same for warnings.
Diffstat (limited to 'windows')
-rw-r--r--windows/ghostpdf.vcxproj4
-rw-r--r--windows/ghostpdf.vcxproj.filters6
2 files changed, 9 insertions, 1 deletions
diff --git a/windows/ghostpdf.vcxproj b/windows/ghostpdf.vcxproj
index 7615ec842..73ea04d03 100644
--- a/windows/ghostpdf.vcxproj
+++ b/windows/ghostpdf.vcxproj
@@ -356,6 +356,7 @@
<ClInclude Include="..\pdf\pdf_device.h" />
<ClInclude Include="..\pdf\pdf_dict.h" />
<ClInclude Include="..\pdf\pdf_doc.h" />
+ <ClInclude Include="..\pdf\pdf_errors.h" />
<ClInclude Include="..\pdf\pdf_file.h" />
<ClInclude Include="..\pdf\pdf_fmap.h" />
<ClInclude Include="..\pdf\pdf_font.h" />
@@ -386,9 +387,10 @@
<ClInclude Include="..\pdf\pdf_trans.h" />
<ClInclude Include="..\pdf\pdf_types.h" />
<ClInclude Include="..\pdf\pdf_utf8.h" />
+ <ClInclude Include="..\pdf\pdf_warnings.h" />
<ClInclude Include="..\pdf\pdf_xref.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project>
+</Project> \ No newline at end of file
diff --git a/windows/ghostpdf.vcxproj.filters b/windows/ghostpdf.vcxproj.filters
index 3a43e9281..6de2eaba1 100644
--- a/windows/ghostpdf.vcxproj.filters
+++ b/windows/ghostpdf.vcxproj.filters
@@ -272,5 +272,11 @@
<ClInclude Include="..\pdf\pdf_utf8.h">
<Filter>pdf %28%2a.h%29</Filter>
</ClInclude>
+ <ClInclude Include="..\pdf\pdf_errors.h">
+ <Filter>pdf %28%2a.h%29</Filter>
+ </ClInclude>
+ <ClInclude Include="..\pdf\pdf_warnings.h">
+ <Filter>pdf %28%2a.h%29</Filter>
+ </ClInclude>
</ItemGroup>
</Project> \ No newline at end of file