C# Class Binarysharp.MemoryManagement.Assembly.CallingConvention.CdeclCallingConvention

Define the C Declaration Calling Convention.
Inheritance: ICallingConvention
Show file Open project: ZenLulz/MemorySharp

Public Methods

Method Description
FormatCalling ( IntPtr function ) : string

Formats the call of a given function.

FormatCleaning ( int nbParameters ) : string

Formats the cleaning of a given number of parameters.

FormatParameters ( IntPtr parameters ) : string

Formats the given parameters to call a function.

Method Details

FormatCalling() public method

Formats the call of a given function.
public FormatCalling ( IntPtr function ) : string
function System.IntPtr The function to call.
return string

FormatCleaning() public method

Formats the cleaning of a given number of parameters.
public FormatCleaning ( int nbParameters ) : string
nbParameters int The number of parameters to clean.
return string

FormatParameters() public method

Formats the given parameters to call a function.
public FormatParameters ( IntPtr parameters ) : string
parameters System.IntPtr An array of parameters.
return string