public static void ShowMessage(string inMessage, int inButtons, bool inWaitForFeedback, bool inBShowApplication, int inMaxTime)
        {
            int inNUserFeedback = 0;
            int ret             = CApplicationAPI.ShowMessage(out _mySError, inMessage, inButtons, inWaitForFeedback, inBShowApplication, ref inNUserFeedback, inMaxTime);

            O("ShowMessage: " + ret.ToString() + ", nUserFeedback: " + inNUserFeedback);
        }