mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00
15 lines
222 B
C#
15 lines
222 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IFPSLib.Emit
|
|
{
|
|
public enum NativeCallingConvention : byte
|
|
{
|
|
Register,
|
|
Pascal,
|
|
CDecl,
|
|
Stdcall
|
|
}
|
|
}
|