;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; DIcal_ResolveRoutine.pro ;;; ;;; Function version of RESOLVE_ROUTINE that returns 1b for success ;;; and 0b for failure and does not throw an error function DIcal_ResolveRoutine, routineName $ , COMPILE_FULL_FILE=compile_full_fileArg $ , EITHER=eitherArg $ , IS_FUNCTION=is_functionArg $ , NO_RECOMPILE=no_recompileArg catcher=0L catch,catcher if catcher ne 0L then begin catch,/cancel return, 0b endif RESOLVE_ROUTINE, routineName $ , COMPILE_FULL_FILE=compile_full_fileArg $ , EITHER=eitherArg $ , IS_FUNCTION=is_functionArg $ , NO_RECOMPILE=no_recompileArg return,1b end