INTERACT FORUM

More => Old Versions => JRiver Media Center 21 for Windows => Topic started by: DoubtingThomas on February 04, 2016, 06:11:26 pm

Title: MC21.exe return codes
Post by: DoubtingThomas on February 04, 2016, 06:11:26 pm
I use MC21.exe extensively, and I like to check the return codes.  As shown in the examples, I get either a 0 or 1 and I would expect a 0 on success.  All MC21.exe calls in the examples, produce the expected results.

Do the return codes from MC21.exe have meaning?  Is there a problem in the MC21.exe code that is not returning the correct return code?

Code: [Select]
c:\>mc21 /command pause
c:\>echo %ERRORLEVEL%
0

c:\>mc21 /mcc 10022,1
c:\>echo %ERRORLEVEL%
1
Title: Re: MC21.exe return codes
Post by: Hendrik on February 05, 2016, 12:58:43 am
The return codes don't really have a meaning, sorry. What it returns depends on some internal processing and which code is used, but it's not a generic fail or success.
Title: Re: MC21.exe return codes
Post by: DoubtingThomas on February 05, 2016, 09:03:43 am
The return codes don't really have a meaning, sorry. What it returns depends on some internal processing and which code is used, but it's not a generic fail or success.

Thank you for the reply.  I'll remove the return code check from my calling code.