Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

gsapi_new_instance (gsapi)
 
.
Summary
TODO - a short description

C# Signature:

    private static extern int gsapi_new_instance(ref System.IntPtr pinstance, System.IntPtr caller_handle);
    [DllImport("gsdll32.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]

VB Signature:

Declare Function gsapi_new_instance Lib "gsapi.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Creates a new instance of Ghostscript. This instance is passed to most other gsapi functions.

Tips & Tricks:

Please add some!

Sample Code:

   /* Keep this variable at a class scope. It will be used
    * by almost all of the gsapi functions
    */
   System.IntPtr pinstance= IntPtr.Zero;

    private void button1_Click(object sender, EventArgs e)
    {
    /* Pass in the reference to pinstance, declared above.
* Assume "this" is Form, so it has a valid Handle */     int retVal = gsapi_new_instance(ref pinstance, this.Handle);
    }

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions