Summary
Get an order name.
Syntax
[DllImport(DLL, EntryPoint = "openmpt_module_get_order_name")]
public static extern IntPtr ModuleGetOrderName(IntPtr mod, int index)
Remember to convert the IntPtr to a string using Marshal.PtrToStringUTF8().
Attributes
| Type |
Description |
| DllImportAttribute |
|
Parameters
| Name |
Type |
Description |
| mod |
IntPtr |
The module handle to work on. |
| index |
int |
The order whose name should be retrieved. |
Return Value
| Type |
Description |
| IntPtr |
A pointer to the order name as a UTF-8 encoded string. |