Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!ulowell!apollo!oj From: oj@apollo.COM (Ellis Oliver Jones) Newsgroups: comp.sys.apollo Subject: Re: login calls and display calls Summary: avoid SMD calls! Keywords: login display manager apollo graphics Message-ID: <41dca6a3.d5b2@apollo.COM> Date: 6 Mar 89 14:10:00 GMT References: <191@tamtam.UUCP> Reply-To: oj@apollo.UUCP (Ellis Oliver Jones) Organization: Apollo Computer, Chelmsford, MA Lines: 31 In article <191@tamtam.UUCP> cees@tamtam.UUCP (cees keyer) writes: >Is there anyone out there in netland who know something about >the following system calls: > smd_$inq_blank_timeout > smd_$inq_disp_type > smd_$set_blank_timeout Yes, but I urge you to use the corresponding GPR calls, because we're deep into the process of phasing out the smd calls. (You didn't say what SR you're on, but thanks for reminding us to edit "scrto"). To change the screen-saver timeout, use gpr_$set_blank_timeout. You probably have a manual (GPR) describing its use. The gpr calls you want (from are: extern void gpr_$set_blank_timeout ( time_$clock_t & timeout, status_$t *status); extern void gpr_$inq_config ( gpr_$display_config_t * config, status_$t * status); extern void gpr_$inq_blank_timeout ( time_$clock_t &timeout, status_$t *status); /oj