mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 16:15:40 +00:00
5b7aaf1c4f
* generator/*.cs : Kill DoGenerate. svn path=/trunk/gtk-sharp/; revision=18572
83 lines
1.1 KiB
C#
83 lines
1.1 KiB
C#
// GtkSharp.Generation.AliasGen.cs - The Alias type Generatable.
|
|
//
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (c) 2003 Mike Kestner
|
|
|
|
namespace GtkSharp.Generation {
|
|
|
|
using System;
|
|
|
|
public class AliasGen : IGeneratable {
|
|
|
|
string type;
|
|
string ctype;
|
|
|
|
public AliasGen (string ctype, string type)
|
|
{
|
|
this.ctype = ctype;
|
|
this.type = type;
|
|
}
|
|
|
|
public string CName {
|
|
get
|
|
{
|
|
return ctype;
|
|
}
|
|
}
|
|
|
|
public string Name {
|
|
get
|
|
{
|
|
return type;
|
|
}
|
|
}
|
|
|
|
public string QualifiedName {
|
|
get
|
|
{
|
|
return type;
|
|
}
|
|
}
|
|
|
|
public string MarshalType {
|
|
get
|
|
{
|
|
return type;
|
|
}
|
|
}
|
|
public virtual string MarshalReturnType {
|
|
get
|
|
{
|
|
return type;
|
|
}
|
|
}
|
|
|
|
public string CallByName (string var_name)
|
|
{
|
|
return var_name;
|
|
}
|
|
|
|
public string FromNative(string var)
|
|
{
|
|
return var;
|
|
}
|
|
|
|
public virtual string FromNativeReturn(string var)
|
|
{
|
|
return var;
|
|
}
|
|
|
|
public virtual string ToNativeReturn(string var)
|
|
{
|
|
return var;
|
|
}
|
|
|
|
public void Generate ()
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|
|
|