Changeset 37f527b in mainline for uspace/app/sbi/src/rdata_t.h


Ignore:
Timestamp:
2010-03-26T21:55:23Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4204ad9
Parents:
b535aeb
Message:

Update SBI to rev. 144.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/rdata_t.h

    rb535aeb r37f527b  
    4444} rdata_int_t;
    4545
     46
    4647/** String variable */
    4748typedef struct {
     
    9293} rdata_object_t;
    9394
     95/** Resource handle
     96 *
     97 * Binding to external data. This type can be used to refer to data used
     98 * by builtin functions (such as files).
     99 */
     100typedef struct {
     101        /** Only understood by the right builtin function. */
     102        void *data;
     103} rdata_resource_t;
     104
    94105typedef enum var_class {
    95106        /** Integer */
     
    109120
    110121        /** Object */
    111         vc_object
     122        vc_object,
     123
     124        /** Interpreter builtin resource */
     125        vc_resource
    112126} var_class_t;
    113127
     
    128142                rdata_array_t *array_v;
    129143                rdata_object_t *object_v;
     144                rdata_resource_t *resource_v;
    130145        } u;
    131146} rdata_var_t;
Note: See TracChangeset for help on using the changeset viewer.