•  Back 
  •  edit_get_sel 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help page 
  •  Show info about hypertext 
  •  View a new file 
Topic       : TOS - The Operating System
Author      : 
Version     : tos.hyp (December 19, 2008)
Subject     : Programmieren/Atari
Nodes       : 3010
Index Size  : 93790
HCP-Version : 5
Compiled on : Atari
@charset    : atarist
@lang       : 
@default    : Title
@help       : 
@options    : +g -i -s +x +zz -t4
@width      : 70
View Ref-File8.6.14.1  Bindings for edit_get_sel                                TOS

 C:          void edit_get_sel ( OBJECT *tree, int16_t obj, int8_t 
             **bsel, int8_t **esel );

 Binding:

             void edit_get_sel ( OBJECT *tree, int16_t obj,
                                 int8_t **bsel, int8_t **esel )
             {
                int_in[0]  = obj;
                int_in[1]  = 8;      /* Sub-opcode for function */
 
                addr_in[0] = tree;
 
                crys_if( 216 );
 
                *bsel  = addr_out[0];
                *esel  = addr_out[1];
 
                return;
             }

 GEM-Arrays:

              Address     Element      Contents 
              control     control[0]   216   # Function opcode 
              control+2   control[1]   2     # Entry in int_in 
              control+4   control[2]   0     # Entry in int_out 
              control+6   control[3]   1     # Entry in addr_in 
              control+8   control[4]   2     # Entry in addr_out 
              int_in      int_in[0]    obj 
              int_in+2    int_in[1]    8     # Sub-opcode 
              addr_in     addr_in[0]   tree 
              addr_out    addr_out[0]  bsel 
              addr_out+4  addr_out[1]  esel 

             In the original documentation this function is defined 
             with an int16_t return value; however in mt_edit.c this 
             is given as void.