public static SpwRetVal SiGetButtonName(IntPtr hdl, uint buttonNumber, out string name) { SpwRetVal tmpRetVal; SiButtonName buttonNameStruct = new SiButtonName(); tmpRetVal = pfnSiGetButtonName(hdl, buttonNumber, ref buttonNameStruct); name = buttonNameStruct.name; return(tmpRetVal); }
private static extern SpwRetVal pfnSiGetButtonName(IntPtr hdl, uint buttonNumber, ref SiButtonName name);