summaryrefslogtreecommitdiff
path: root/demos/csharp
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2020-07-28 21:36:11 -0700
committerMichael Vrhel <michael.vrhel@artifex.com>2020-07-28 21:41:04 -0700
commit6179b719348c1622352b55d66599ba26cfba9d3d (patch)
treee37c8334ac2b3c8d053bfebeccd02ef58b4fc789 /demos/csharp
parentc001ce438ef9fd0171104ac49afa110e39edb03e (diff)
downloadghostpdl-6179b719348c1622352b55d66599ba26cfba9d3d.tar.gz
Add Python examples and README
Also fix typos in C# README
Diffstat (limited to 'demos/csharp')
-rw-r--r--demos/csharp/README.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/demos/csharp/README.txt b/demos/csharp/README.txt
index 4fe9f786f..1665c7cd1 100644
--- a/demos/csharp/README.txt
+++ b/demos/csharp/README.txt
@@ -1,17 +1,17 @@
The following projects show the use of the Ghostscript API
in a C# environment. A WPF C# Windows viewer application is
contained in the windows folder. A MONO C# Gtk viewer
-application is contained in the linux folder.
+application is contained in the Linux folder.
The applications share the same API file to Ghostscript or GhostPDL
which is in api/ghostapi.cs. In this file, lib_dll is set to the appropriate
-dll or so file that is create by the the complilation of ghostscript. Note
-that to build libgpdl.so on linux you use "make so". On windows gpdldll64.dll
-and varients are built depending upon the VS solution configurations.
+dll or so file that is create by the the compilation of Ghostscript. Note
+that to build libgpdl.so on Linux you use "make so". On windows gpdldll64.dll
+and variants are built depending upon the VS solution configurations.
The applications each have another level of interface which is api/ghostnet.cs
for the Windows application and api/ghostmono.cs for the Linux application.
-These files assemble the commands that are to be excecuted, creates the working
+These files assemble the commands that are to be executed, creates the working
threads that GhostPDL/Ghostscript will run on as well as handling the call backs
from GhostPDL/Ghostscript. The Linux and Windows applications use different
threading methods.