Update of /cvsroot/csdopenglnet/csdOpenGL/GL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14704
Added Files:
DelegateCallingConventionCdeclAttribute.cs
Log Message:
needed for delegates
--- NEW FILE: DelegateCallingConventionCdeclAttribute.cs ---
using System;
using System.Runtime.InteropServices;
namespace csDragons.OpenGL {
[AttributeUsage(AttributeTargets.Delegate, AllowMultiple=false, Inherited=false)]
public class DelegateCallingConventionCdeclAttribute : Attribute {
public DelegateCallingConventionCdeclAttribute() {}
}
}
|