~ubuntu-branches/ubuntu/trusty/pdfmod/trusty

« back to all changes in this revision

Viewing changes to lib/poppler-sharp/poppler-sharp/generated/ActionAny.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-06-18 03:44:46 UTC
  • Revision ID: james.westby@ubuntu.com-20100618034446-bogifrsscpayp361
Tags: upstream-0.8.3
ImportĀ upstreamĀ versionĀ 0.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// This file was generated by the Gtk# code generator.
 
2
// Any changes made will be lost if regenerated.
 
3
 
 
4
namespace Poppler {
 
5
 
 
6
        using System;
 
7
        using System.Collections;
 
8
        using System.Runtime.InteropServices;
 
9
 
 
10
#region Autogenerated code
 
11
        [StructLayout(LayoutKind.Sequential)]
 
12
        public struct ActionAny {
 
13
 
 
14
                public Poppler.ActionType Type;
 
15
                public string Title;
 
16
 
 
17
                public static Poppler.ActionAny Zero = new Poppler.ActionAny ();
 
18
 
 
19
                public static Poppler.ActionAny New(IntPtr raw) {
 
20
                        if (raw == IntPtr.Zero)
 
21
                                return Poppler.ActionAny.Zero;
 
22
                        return (Poppler.ActionAny) Marshal.PtrToStructure (raw, typeof (Poppler.ActionAny));
 
23
                }
 
24
 
 
25
                private static GLib.GType GType {
 
26
                        get { return GLib.GType.Pointer; }
 
27
                }
 
28
#endregion
 
29
        }
 
30
}