~ubuntu-branches/ubuntu/maverick/swig1.3/maverick

« back to all changes in this revision

Viewing changes to Lib/csharp/csharphead.swg

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-09-01 18:35:55 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050901183555-eq59uwhq8b62e44c
Tags: 1.3.24-1ubuntu4
* Use php5-dev instead of php4-dev, to kick php4 out of main.
* Drop support for generation of pike bindings, as nothing uses it,
  and swig is the only thing keeping pike7.6 in main (Ubuntu #13796)

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
    static SWIGExceptionDelegate argumentOutOfRangeDelegate = new SWIGExceptionDelegate(ThrowArgumentOutOfRangeException);
84
84
    static SWIGExceptionDelegate nullReferenceDelegate = new SWIGExceptionDelegate(ThrowNullReferenceException);
85
85
 
86
 
    [DllImport("$module", EntryPoint="SWIGRegisterExceptionCallbacks_$module")]
 
86
    [DllImport("$dllimport", EntryPoint="SWIGRegisterExceptionCallbacks_$module")]
87
87
    public static extern void SWIGRegisterExceptionCallbacks_$module(
88
88
      SWIGExceptionDelegate systemExceptionDelegate,
89
89
      SWIGExceptionDelegate outOfMemoryDelegate, 
136
136
    public delegate string SWIGStringDelegate(string message);
137
137
    static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
138
138
 
139
 
    [DllImport("$module", EntryPoint="SWIGRegisterStringCallback_$module")]
 
139
    [DllImport("$dllimport", EntryPoint="SWIGRegisterStringCallback_$module")]
140
140
    public static extern void SWIGRegisterStringCallback_$module(SWIGStringDelegate stringDelegate);
141
141
 
142
142
    static string CreateString(string cString) {