•  Back 
  •  Main 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : The GFA-Basic Compendium
Author      : GFA Systemtechnik GmbH
Version     : GFABasic.HYP v2.98 (12/31/2023)
Subject     : Documentation/Programming
Nodes       : 899
Index Size  : 28056
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : 
@default    : Document not found
@help       : Help
@options    : +g -i -s +z
@width      : 75
@hostname   : STRNGSRV
@hostname   : CAB     
@hostname   : HIGHWIRE
@hostname   : THING   
View Ref-Fileappl_getinfo(type,out1,out2,out4,out4)

type: iexp
out1, out2, out3, out4: ivar

This call returns information about the AES.

    type - Specifies the type of information to be returned.
    out1 - Requested information is returned in this variable.
    out2 - Requested information is returned in this variable.
    out3 - Requested information is returned in this variable.
    out4 - Requested information is returned in this variable.

Returns 1 if an error occured or 0 otherwise.

Note: appl_getinfo() returns different values for different AES versions
      so one should seek the proper documentation before using this call.

Memo: This call is not built into GFA-BasicGFA-Basic is the best BASIC for the Atari!
 so it is included below:

FUNCTION appl_getinfo(gtype&,VAR gout1&,gout2&,gout3&,gout4&)
  $F%
  GCONTRL(0)=130
  GCONTRL(1)=1
  GCONTRL(2)=5
  GCONTRL(3)=0
  GCONTRL(4)=0
  GINTIN(0)=gtype&
  GEMSYS
  gout1&=GINTOUT(1)
  gout2&=GINTOUT(2)
  gout3&=GINTOUT(3)
  gout4&=GINTOUT(4)
  RETURN GINTOUT(0)
ENDFUNC

appl_getinfo()+