home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-09-26 | 187.7 KB | 4,656 lines |
- os_t
- Defined in: <os=>os.$>.h
- Declaration: typedef int os_t;os_f
- Defined in: <os=>os.$>.h
- Declaration: typedef byte os_f;os_mode
- Defined in: <os=>os.$>.h
- Declaration: typedef ... os_mode;os_gcol
- Defined in: <os=>os.$>.h
- Declaration: typedef byte os_gcol;os_tint
- Defined in: <os=>os.$>.h
- Declaration: typedef byte os_tint;os_action
- Defined in: <os=>os.$>.h
- Declaration: typedef byte os_action;os_colour
- Defined in: <os=>os.$>.h
- Declaration: typedef bits os_colour;os_colour_number
- Defined in: <os=>os.$>.h
- Declaration: typedef int os_colour_number;os_colour_pair
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { <os_colour> on;
- <os_colour> off;
- }
- os_colour_pair;os_palette
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { <os_colour> entries [...];
- }
- os_palette;os_sprite_palette
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { <os_colour_pair> entries [...];
- }
- os_sprite_palette;os_ecf
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { bits ecf [8];
- }
- os_ecf;os_correction_table
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { byte gamma [256];
- }
- os_correction_table;os_bcd_date_and_time
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { byte year;
- byte month;
- byte date;
- byte weekday;
- byte hour;
- byte minute;
- byte second;
- }
- os_bcd_date_and_time;os_station_number
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int station;
- int net;
- }
- os_station_number;os_box
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int x0;
- int y0;
- int x1;
- int y1;
- }
- os_box;os_factors
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int xmul;
- int ymul;
- int xdiv;
- int ydiv;
- }
- os_factors;os_change_box
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int state;
- <os_box> box;
- }
- os_change_box;os_error
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { bits errnum;
- char errmess [252];
- }
- os_error;os_date_and_time
- Defined in: <os=>os.$>.h
- Declaration: typedef byte os_date_and_time [5];os_coord
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int x;
- int y;
- }
- os_coord;os_trfm
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int entries [3] [2];
- }
- os_trfm;os_hom_trfm
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int entries [2] [2];
- }
- os_hom_trfm;os_pgm
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { <os_coord> coords [4];
- }
- os_pgm;os_register_block
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int registers [16];
- }
- os_register_block;os_vdu_var_list
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int var [...];
- }
- os_vdu_var_list;os_key_handler
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { byte k [...];
- }
- os_key_handler;os_gi
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { byte type;
- byte i [4];
- }
- os_gi;os_gs
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { short size;
- char s [...];
- }
- os_gs;os_mem_map_request
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int page_no;
- byte *map;
- bits access;
- }
- os_mem_map_request;os_mem_map_request_list
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { <os_mem_map_request> requests [...];
- }
- os_mem_map_request_list;os_page_block
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int page_no;
- byte *log_addr;
- byte *phys_addr;
- }
- os_page_block;pointerv_record
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { <pointerv_record=>pointerv.pointerv_record> *next;
- bits flags;
- int pointer_type;
- char name [30];
- }
- pointerv_record;os_mode_block
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { int size;
- bits flags;
- int xres;
- int yres;
- int log2_bpp;
- int frame_rate;
- char name [...];
- }
- os_mode_block;os_mode_selector
- Defined in: <os=>os.$>.h
- Declaration: typedef
- struct
- { bits flags;
- int xres;
- int yres;
- int log2_bpp;
- int frame_rate;
- struct
- { int var;
- int val;
- }
- modevars [...];
- }
- os_mode_selector;os_ERROR_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_LIMIT 252os_FILE_NAME_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_FILE_NAME_LIMIT 256os_CLI_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_CLI_LIMIT 256os_RSHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_RSHIFT 8os_GSHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_GSHIFT 16os_BSHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_BSHIFT 24os_R
- Defined in: <os=>os.$>.h
- Declaration: #define os_R 0xFF00uos_G
- Defined in: <os=>os.$>.h
- Declaration: #define os_G 0xFF0000uos_B
- Defined in: <os=>os.$>.h
- Declaration: #define os_B 0xFF000000uos_COLOUR_RANGE
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_RANGE 255os_MODE1BPP90X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE1BPP90X45 ((<os_mode>) 0)os_MODE2BPP90X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE2BPP90X45 ((<os_mode>) 8)os_MODE4BPP90X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE4BPP90X45 ((<os_mode>) 12)os_MODE8BPP90X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE8BPP90X45 ((<os_mode>) 15)os_MODE2BPP45X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE2BPP45X45 ((<os_mode>) 1)os_MODE4BPP45X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE4BPP45X45 ((<os_mode>) 9)os_MODE8BPP45X45
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE8BPP45X45 ((<os_mode>) 13)os_MODE1BPP90X90
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE1BPP90X90 ((<os_mode>) 25)os_MODE2BPP90X90
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE2BPP90X90 ((<os_mode>) 26)os_MODE4BPP90X90
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE4BPP90X90 ((<os_mode>) 27)os_MODE8BPP90X90
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODE8BPP90X90 ((<os_mode>) 28)os_INCH
- Defined in: <os=>os.$>.h
- Declaration: #define os_INCH 180os_VDU_NULL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_NULL ((char) '\\x00')os_VDU_CHAR_TO_PRINTER
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_CHAR_TO_PRINTER ((char) '\\x01')os_VDU_PRINTER_ON
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_PRINTER_ON ((char) '\\x02')os_VDU_PRINTER_OFF
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_PRINTER_OFF ((char) '\\x03')os_VDU_GRAPH_TEXT_OFF
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_GRAPH_TEXT_OFF ((char) '\\x04')os_VDU_GRAPH_TEXT_ON
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_GRAPH_TEXT_ON ((char) '\\x05')os_VDU_SCREEN_ON
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SCREEN_ON ((char) '\\x06')os_VDU_BELL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_BELL ((char) '\\x07')os_VDU_BACKSPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_BACKSPACE ((char) '\\x08')os_VDU_TAB
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_TAB ((char) '\\x09')os_VDU_LINEFEED
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_LINEFEED ((char) '\\x0A')os_VDU_VERTICAL_TAB
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_VERTICAL_TAB ((char) '\\x0B')os_VDU_CLS
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_CLS ((char) '\\x0C')os_VDU_RETURN
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_RETURN ((char) '\\x0D')os_VDU_PAGE_MODE_ON
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_PAGE_MODE_ON ((char) '\\x0E')os_VDU_PAGE_MODE_OFF
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_PAGE_MODE_OFF ((char) '\\x0F')os_VDU_CLG
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_CLG ((char) '\\x10')os_VDU_SET_TEXT_COLOUR
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_TEXT_COLOUR ((char) '\\x11')os_VDU_SET_GCOL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_GCOL ((char) '\\x12')os_VDU_SET_PALETTE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_PALETTE ((char) '\\x13')os_VDU_RESET_COLOURS
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_RESET_COLOURS ((char) '\\x14')os_VDU_SCREEN_OFF
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SCREEN_OFF ((char) '\\x15')os_VDU_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_MODE ((char) '\\x16')os_VDU_MISC
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_MISC ((char) '\\x17')os_VDU_SET_GRAPHICS_WINDOW
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_GRAPHICS_WINDOW ((char) '\\x18')os_VDU_PLOT
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_PLOT ((char) '\\x19')os_VDU_RESET_WINDOWS
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_RESET_WINDOWS ((char) '\\x1A')os_VDU_ESCAPE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_ESCAPE ((char) '\\x1B')os_VDU_SET_TEXT_WINDOW
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_TEXT_WINDOW ((char) '\\x1C')os_VDU_SET_GRAPHICS_ORIGIN
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_GRAPHICS_ORIGIN ((char) '\\x1D')os_VDU_HOME_TEXT_CURSOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_HOME_TEXT_CURSOR ((char) '\\x1E')os_VDU_SET_TEXT_CURSOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_SET_TEXT_CURSOR ((char) '\\x1F')os_VDU_DELETE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDU_DELETE ((char) '\\x7F')os_MISC_INTERLACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_INTERLACE ((char) '\\x00')os_MISC_CURSOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_CURSOR ((char) '\\x01')os_MISC_SET_ECF1
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ECF1 ((char) '\\x02')os_MISC_SET_ECF2
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ECF2 ((char) '\\x03')os_MISC_SET_ECF3
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ECF3 ((char) '\\x04')os_MISC_SET_ECF4
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ECF4 ((char) '\\x05')os_MISC_SET_DOT_STYLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_DOT_STYLE ((char) '\\x06')os_MISC_SCROLL
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SCROLL ((char) '\\x07')os_MISC_CLEAR_REGION
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_CLEAR_REGION ((char) '\\x08')os_MISC_SET_ON
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ON ((char) '\\x09')os_MISC_SET_OFF
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_OFF ((char) '\\x0A')os_MISC_SET_BBCECF
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_BBCECF ((char) '\\x0B')os_MISC_SET_UNPACKED_ECF1
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_UNPACKED_ECF1 ((char) '\\x0C')os_MISC_SET_UNPACKED_ECF2
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_UNPACKED_ECF2 ((char) '\\x0D')os_MISC_SET_UNPACKED_ECF3
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_UNPACKED_ECF3 ((char) '\\x0E')os_MISC_SET_UNPACKED_ECF4
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_UNPACKED_ECF4 ((char) '\\x0F')os_MISC_SET_CURSOR_MOVEMENT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_CURSOR_MOVEMENT ((char) '\\x10')os_MISC_MISC
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_MISC ((char) '\\x11')os_MISC_SET_TEXT_FG_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_TEXT_FG_TINT ((char) '\\x00')os_MISC_SET_TEXT_BG_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_TEXT_BG_TINT ((char) '\\x01')os_MISC_SET_GRAPHICS_FG_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_GRAPHICS_FG_TINT ((char) '\\x02')os_MISC_SET_GRAPHICS_BG_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_GRAPHICS_BG_TINT ((char) '\\x03')os_MISC_SET_ECF_INTERPRETATION
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ECF_INTERPRETATION ((char) '\\x04')os_MISC_INVERT_TEXT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_INVERT_TEXT ((char) '\\x05')os_MISC_SET_ECF_ORIGIN
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_ECF_ORIGIN ((char) '\\x06')os_MISC_SET_CHAR_SIZE
- Defined in: <os=>os.$>.h
- Declaration: #define os_MISC_SET_CHAR_SIZE ((char) '\\x07')os_ACTION_OVERWRITE
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_OVERWRITE ((<os_action>) 0)os_ACTION_DISJOIN
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_DISJOIN ((<os_action>) 1)os_ACTION_CONJOIN
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_CONJOIN ((<os_action>) 2)os_ACTION_EXCLUSIVE_DISJOIN
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_EXCLUSIVE_DISJOIN ((<os_action>) 3)os_ACTION_INVERT
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_INVERT ((<os_action>) 4)os_ACTION_IDENTITY
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_IDENTITY ((<os_action>) 5)os_ACTION_CONJOIN_NEGATION
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_CONJOIN_NEGATION ((<os_action>) 6)os_ACTION_DISJOIN_NEGATION
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_DISJOIN_NEGATION ((<os_action>) 7)os_ACTION_USE_MASK
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_MASK ((<os_action>) 8)os_ACTION_USE_ECF1
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_ECF1 ((<os_action>) 16)os_ACTION_USE_ECF2
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_ECF2 ((<os_action>) 32)os_ACTION_USE_ECF3
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_ECF3 ((<os_action>) 48)os_ACTION_USE_ECF4
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_ECF4 ((<os_action>) 64)os_ACTION_USE_GIANT_ECF
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_GIANT_ECF ((<os_action>) 80)os_ACTION_USE_SPRITE_PALETTE
- Defined in: <os=>os.$>.h
- Declaration: #define os_ACTION_USE_SPRITE_PALETTE ((<os_action>) 32)os_GCOL_SET_FG
- Defined in: <os=>os.$>.h
- Declaration: #define os_GCOL_SET_FG ((<os_gcol>) 0)os_GCOL_SET_BG
- Defined in: <os=>os.$>.h
- Declaration: #define os_GCOL_SET_BG ((<os_gcol>) 128)os_PLOT_SOLID
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_SOLID 0os_PLOT_SOLID_EX_END
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_SOLID_EX_END 8os_PLOT_DOTTED
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_DOTTED 16os_PLOT_DOTTED_EX_END
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_DOTTED_EX_END 24os_PLOT_SOLID_EX_START
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_SOLID_EX_START 32os_PLOT_SOLID_EX_BOTH
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_SOLID_EX_BOTH 40os_PLOT_DOTTED_EX_START
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_DOTTED_EX_START 48os_PLOT_DOTTED_EX_BOTH
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_DOTTED_EX_BOTH 56os_PLOT_POINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_POINT 64os_PLOT_HORIZONTAL_TO_NON_BG
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_HORIZONTAL_TO_NON_BG 72os_PLOT_TRIANGLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_TRIANGLE 80os_PLOT_RIGHT_TO_BG
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_RIGHT_TO_BG 88os_PLOT_RECTANGLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_RECTANGLE 96os_PLOT_HORIZONTAL_TO_FG
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_HORIZONTAL_TO_FG 104os_PLOT_PARALLELOGRAM
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_PARALLELOGRAM 112os_PLOT_RIGHT_TO_NON_FG
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_RIGHT_TO_NON_FG 120os_PLOT_FLOOD_TO_NON_BG
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_FLOOD_TO_NON_BG 128os_PLOT_FLOOD_TO_FG
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_FLOOD_TO_FG 136os_PLOT_CIRCLE_OUTLINE
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_CIRCLE_OUTLINE 144os_PLOT_CIRCLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_CIRCLE 152os_PLOT_ARC
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_ARC 160os_PLOT_SEGMENT
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_SEGMENT 168os_PLOT_SECTOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_SECTOR 176os_PLOT_BLOCK
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_BLOCK 184os_PLOT_ELLIPSE_OUTLINE
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_ELLIPSE_OUTLINE 192os_PLOT_ELLIPSE
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_ELLIPSE 200os_MOVE_BY
- Defined in: <os=>os.$>.h
- Declaration: #define os_MOVE_BY 0os_PLOT_BY
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_BY 1os_PLOT_INVERSE_BY
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_INVERSE_BY 2os_PLOT_BG_BY
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_BG_BY 3os_MOVE_TO
- Defined in: <os=>os.$>.h
- Declaration: #define os_MOVE_TO 4os_PLOT_TO
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_TO 5os_PLOT_INVERSE_TO
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_INVERSE_TO 6os_PLOT_BG_TO
- Defined in: <os=>os.$>.h
- Declaration: #define os_PLOT_BG_TO 7os_VARTYPE_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define os_VARTYPE_STRING 0os_VARTYPE_NUMBER
- Defined in: <os=>os.$>.h
- Declaration: #define os_VARTYPE_NUMBER 1os_VARTYPE_MACRO
- Defined in: <os=>os.$>.h
- Declaration: #define os_VARTYPE_MACRO 2os_VARTYPE_EXPANDED
- Defined in: <os=>os.$>.h
- Declaration: #define os_VARTYPE_EXPANDED 3os_VARTYPE_LITERAL_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define os_VARTYPE_LITERAL_STRING 4os_VARTYPE_CODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VARTYPE_CODE 16os_MODEVAR_MODE_FLAGS
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_MODE_FLAGS 0os_MODEVAR_RSCREEN
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_RSCREEN 1os_MODEVAR_BSCREEN
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_BSCREEN 2os_MODEVAR_NCOLOUR
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_NCOLOUR 3os_MODEVAR_XEIG_FACTOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_XEIG_FACTOR 4os_MODEVAR_YEIG_FACTOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_YEIG_FACTOR 5os_MODEVAR_LINE_LENGTH
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_LINE_LENGTH 6os_MODEVAR_SCREEN_SIZE
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_SCREEN_SIZE 7os_MODEVAR_YSHIFT_FACTOR
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_YSHIFT_FACTOR 8os_MODEVAR_LOG2_BPP
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_LOG2_BPP 9os_MODEVAR_LOG2_BPC
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_LOG2_BPC 10os_MODEVAR_XWIND_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_XWIND_LIMIT 11os_MODEVAR_YWIND_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_MODEVAR_YWIND_LIMIT 12os_VDUVAR_GWL_COL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GWL_COL 128os_VDUVAR_GWB_ROW
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GWB_ROW 129os_VDUVAR_GWR_COL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GWR_COL 130os_VDUVAR_GWT_ROW
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GWT_ROW 131os_VDUVAR_TWL_COL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TWL_COL 132os_VDUVAR_TWB_ROW
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TWB_ROW 133os_VDUVAR_TWR_COL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TWR_COL 134os_VDUVAR_TWT_ROW
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TWT_ROW 135os_VDUVAR_ORGX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_ORGX 136os_VDUVAR_ORGY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_ORGY 137os_VDUVAR_GCSX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCSX 138os_VDUVAR_GCSY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCSY 139os_VDUVAR_OLDER_CSX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_OLDER_CSX 140os_VDUVAR_OLDER_CSY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_OLDER_CSY 141os_VDUVAR_OLD_CSX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_OLD_CSX 142os_VDUVAR_OLD_CSY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_OLD_CSY 143os_VDUVAR_GCS_IX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCS_IX 144os_VDUVAR_GCS_IY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCS_IY 145os_VDUVAR_NEW_PTX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_NEW_PTX 146os_VDUVAR_NEW_PTY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_NEW_PTY 147os_VDUVAR_SCREEN_START
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_SCREEN_START 148os_VDUVAR_DISPLAY_START
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_DISPLAY_START 149os_VDUVAR_TOTAL_SCREEN_SIZE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TOTAL_SCREEN_SIZE 150os_VDUVAR_GPLFMD
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GPLFMD 151os_VDUVAR_GPLBMD
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GPLBMD 152os_VDUVAR_GFCOL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GFCOL 153os_VDUVAR_GBCOL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GBCOL 154os_VDUVAR_TFORE_COL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TFORE_COL 155os_VDUVAR_TBACK_COL
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TBACK_COL 156os_VDUVAR_GF_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GF_TINT 157os_VDUVAR_GB_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GB_TINT 158os_VDUVAR_TF_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TF_TINT 159os_VDUVAR_TB_TINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TB_TINT 160os_VDUVAR_MAX_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_MAX_MODE 161os_VDUVAR_GCHAR_SIZEX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCHAR_SIZEX 162os_VDUVAR_GCHAR_SIZEY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCHAR_SIZEY 163os_VDUVAR_GCHAR_SPACEX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCHAR_SPACEX 164os_VDUVAR_GCHAR_SPACEY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCHAR_SPACEY 165os_VDUVAR_HLINE_ADDR
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_HLINE_ADDR 166os_VDUVAR_TCHAR_SIZEX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TCHAR_SIZEX 167os_VDUVAR_TCHAR_SIZEY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TCHAR_SIZEY 168os_VDUVAR_TCHAR_SPACEX
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TCHAR_SPACEX 169os_VDUVAR_TCHAR_SPACEY
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_TCHAR_SPACEY 170os_VDUVAR_GCOL_ORA_EOR_ADDR
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_GCOL_ORA_EOR_ADDR 171os_VDUVAR_VIDC_CLOCK_SPEED
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_VIDC_CLOCK_SPEED 172os_VDUVAR_WINDOW_WIDTH
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_WINDOW_WIDTH 256os_VDUVAR_WINDOW_HEIGHT
- Defined in: <os=>os.$>.h
- Declaration: #define os_VDUVAR_WINDOW_HEIGHT 257os_FOREGROUND
- Defined in: <os=>os.$>.h
- Declaration: #define os_FOREGROUND 0x0uos_BACKGROUND
- Defined in: <os=>os.$>.h
- Declaration: #define os_BACKGROUND 0x80uos_COLOUR_TRANSPARENT
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_TRANSPARENT ((<os_colour>) -1)os_COLOUR_RED
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_RED ((<os_colour>) 65280)os_COLOUR_GREEN
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_GREEN ((<os_colour>) 16711680)os_COLOUR_BLUE
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_BLUE ((<os_colour>) -16777216)os_COLOUR_CYAN
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_CYAN ((<os_colour>) -65536)os_COLOUR_MAGENTA
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_MAGENTA ((<os_colour>) -16711936)os_COLOUR_YELLOW
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_YELLOW ((<os_colour>) 16776960)os_COLOUR_WHITE
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_WHITE ((<os_colour>) -256)os_COLOUR_VERY_LIGHT_GREY
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_VERY_LIGHT_GREY ((<os_colour>) -572662528)os_COLOUR_LIGHT_GREY
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_LIGHT_GREY ((<os_colour>) -1145324800)os_COLOUR_MID_LIGHT_GREY
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_MID_LIGHT_GREY ((<os_colour>) -1717987072)os_COLOUR_MID_DARK_GREY
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_MID_DARK_GREY ((<os_colour>) 2004317952)os_COLOUR_DARK_GREY
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_DARK_GREY ((<os_colour>) 1431655680)os_COLOUR_VERY_DARK_GREY
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_VERY_DARK_GREY ((<os_colour>) 858993408)os_COLOUR_BLACK
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_BLACK ((<os_colour>) 0)os_COLOUR_DARK_BLUE
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_DARK_BLUE ((<os_colour>) -1723596800)os_COLOUR_LIGHT_YELLOW
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_LIGHT_YELLOW ((<os_colour>) 15658496)os_COLOUR_LIGHT_GREEN
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_LIGHT_GREEN ((<os_colour>) 13369344)os_COLOUR_LIGHT_RED
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_LIGHT_RED ((<os_colour>) 56576)os_COLOUR_CREAM
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_CREAM ((<os_colour>) -1141969408)os_COLOUR_DARK_GREEN
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_DARK_GREEN ((<os_colour>) 8934656)os_COLOUR_ORANGE
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_ORANGE ((<os_colour>) 12320512)os_COLOUR_LIGHT_BLUE
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_LIGHT_BLUE ((<os_colour>) -4521984)os_DEVICE_PRINTER_BUSY
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_PRINTER_BUSY 0os_DEVICE_SERIAL_RINGING
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_SERIAL_RINGING 1os_DEVICE_PRINTER_ACKNOWLEDGE
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_PRINTER_ACKNOWLEDGE 2os_DEVICE_VSYNC
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_VSYNC 3os_DEVICE_POWER_ON
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_POWER_ON 4os_DEVICE_IOC_TIMER0
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_IOC_TIMER0 5os_DEVICE_IOC_TIMER1
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_IOC_TIMER1 6os_DEVICE_FIQ_DOWNGRADE
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_FIQ_DOWNGRADE 7os_DEVICE_EXPANSION_FIQ_DOWNGRADE
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_EXPANSION_FIQ_DOWNGRADE 8os_DEVICE_SOUND_BUFFER
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_SOUND_BUFFER 9os_DEVICE_SERIAL_CONTROLLER
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_SERIAL_CONTROLLER 10os_DEVICE_HARD_DISC_CONTROLLER
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_HARD_DISC_CONTROLLER 11os_DEVICE_FLOPPY_DISC_CHANGED
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_FLOPPY_DISC_CHANGED 12os_DEVICE_EXPANSION_CARD
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_EXPANSION_CARD 13os_DEVICE_KEYBOARD_TX_EMPTY
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_KEYBOARD_TX_EMPTY 14os_DEVICE_KEYBOARD_RX_FULL
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_KEYBOARD_RX_FULL 15os_DEVICE_PRINTER
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_PRINTER 0os_DEVICE_BATTERY_WARNING
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_BATTERY_WARNING 1os_DEVICE_FLOPPY_DISC_INDEX
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_FLOPPY_DISC_INDEX 2os_DEVICE_IDE_DISC
- Defined in: <os=>os.$>.h
- Declaration: #define os_DEVICE_IDE_DISC 11os_ERROR_NUMBER_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_NUMBER_SHIFT 0os_ERROR_NUMBER
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_NUMBER 0xFFuos_ERROR_SOURCE_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_SOURCE_SHIFT 8os_ERROR_SOURCE
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_SOURCE 0xFFFF00uos_ERROR_CATEGORY_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_CATEGORY_SHIFT 24os_ERROR_CATEGORY
- Defined in: <os=>os.$>.h
- Declaration: #define os_ERROR_CATEGORY 0x7000000uos_CATEGORY_UNCLASSIFIED
- Defined in: <os=>os.$>.h
- Declaration: #define os_CATEGORY_UNCLASSIFIED 0os_CATEGORY_INFORMATION
- Defined in: <os=>os.$>.h
- Declaration: #define os_CATEGORY_INFORMATION 1os_CATEGORY_WARNING
- Defined in: <os=>os.$>.h
- Declaration: #define os_CATEGORY_WARNING 2os_CATEGORY_SYSTEM
- Defined in: <os=>os.$>.h
- Declaration: #define os_CATEGORY_SYSTEM 3os_GLOBAL_ESCAPE
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_ESCAPE 1os_GLOBAL_FATAL
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_FATAL 2os_GLOBAL_IS_AFIL
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_IS_AFIL 3os_GLOBAL_ISNT_FIL
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_ISNT_FIL 4os_GLOBAL_IS_ADIR
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_IS_ADIR 5os_GLOBAL_ISNT_DIR
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_ISNT_DIR 6os_GLOBAL_NO_FILE
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_FILE 7os_GLOBAL_NO_DIR
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_DIR 8os_GLOBAL_NO_ANY
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_ANY 9os_GLOBAL_TYPS_BAD
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_TYPS_BAD 10os_GLOBAL_BAD_REN
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_REN 11os_GLOBAL_BAD_ACC
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_ACC 12os_GLOBAL_OPN_FILS
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_OPN_FILS 13os_GLOBAL_BAD_NAME
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_NAME 14os_GLOBAL_LONG_NAM
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_LONG_NAM 15os_GLOBAL_CHANNEL
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_CHANNEL 16os_GLOBAL_BAD_SWI
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_SWI 17os_GLOBAL_MOD_IN_US
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_MOD_IN_US 18os_GLOBAL_STR_OFLO
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_STR_OFLO 19os_GLOBAL_NUM_OFLO
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NUM_OFLO 20os_GLOBAL_BUF_OFLO
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BUF_OFLO 21os_GLOBAL_BAD_STN
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_STN 22os_GLOBAL_BAD_NET
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_NET 23os_GLOBAL_FULL_NET
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_FULL_NET 24os_GLOBAL_NO_ECO
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_ECO 25os_GLOBAL_BAD_READ
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_READ 26os_GLOBAL_BAD_WRT
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_WRT 27os_GLOBAL_DATA_LST
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_DATA_LST 28os_GLOBAL_BAD_FS_OP
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_FS_OP 29os_GLOBAL_FS_NO_RD
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_FS_NO_RD 30os_GLOBAL_FS_NO_WRT
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_FS_NO_WRT 31os_GLOBAL_FS_IN_USE
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_FS_IN_USE 32os_GLOBAL_BAD_ADDRESS
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_ADDRESS 33os_GLOBAL_NO_STORE
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_STORE 34os_GLOBAL_RAM_LOADC
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_RAM_LOADC 35os_GLOBAL_DDS0
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_DDS0 36os_GLOBAL_DDS1
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_DDS1 37os_GLOBAL_DDS2
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_DDS2 38os_GLOBAL_DDS3
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_DDS3 39os_GLOBAL_CSDS
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_CSDS 40os_GLOBAL_LDS
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_LDS 41os_GLOBAL_URDS
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_URDS 42os_GLOBAL_DR
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_DR 43os_GLOBAL_APP
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_APP 44os_GLOBAL_EX_DT
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_EX_DT 45os_GLOBAL_EX_LD_EX
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_EX_LD_EX 46os_GLOBAL_USE_DESK
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_USE_DESK 47os_GLOBAL_APP_QUIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_APP_QUIT 48os_GLOBAL_NO_MEM
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_MEM 49os_GLOBAL_BAD_HARD
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_HARD 50os_GLOBAL_BAD_PARM
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_BAD_PARM 51os_GLOBAL_NO_WIMP
- Defined in: <os=>os.$>.h
- Declaration: #define os_GLOBAL_NO_WIMP 52error_ESCAPE
- Defined in: <os=>os.$>.h
- Declaration: #define error_ESCAPE 0x11uerror_BAD_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_MODE 0x19uerror_IS_ADIR
- Defined in: <os=>os.$>.h
- Declaration: #define error_IS_ADIR 0xA8uerror_TYPES_DONT_MATCH
- Defined in: <os=>os.$>.h
- Declaration: #define error_TYPES_DONT_MATCH 0xAFuerror_BAD_RENAME
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_RENAME 0xB0uerror_BAD_COPY
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_COPY 0xB1uerror_OUTSIDE_FILE
- Defined in: <os=>os.$>.h
- Declaration: #define error_OUTSIDE_FILE 0xB7uerror_ACCESS_VIOLATION
- Defined in: <os=>os.$>.h
- Declaration: #define error_ACCESS_VIOLATION 0xBDuerror_TOO_MANY_OPEN_FILES
- Defined in: <os=>os.$>.h
- Declaration: #define error_TOO_MANY_OPEN_FILES 0xC0uerror_NOT_OPEN_FOR_UPDATE
- Defined in: <os=>os.$>.h
- Declaration: #define error_NOT_OPEN_FOR_UPDATE 0xC1uerror_FILE_OPEN
- Defined in: <os=>os.$>.h
- Declaration: #define error_FILE_OPEN 0xC2uerror_OBJECT_LOCKED
- Defined in: <os=>os.$>.h
- Declaration: #define error_OBJECT_LOCKED 0xC3uerror_ALREADY_EXISTS
- Defined in: <os=>os.$>.h
- Declaration: #define error_ALREADY_EXISTS 0xC4uerror_BAD_FILE_NAME
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_FILE_NAME 0xCCuerror_FILE_NOT_FOUND
- Defined in: <os=>os.$>.h
- Declaration: #define error_FILE_NOT_FOUND 0xD6uerror_SYNTAX
- Defined in: <os=>os.$>.h
- Declaration: #define error_SYNTAX 0xDCuerror_BAD_NO_PARMS
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_NO_PARMS 0xDCuerror_TOO_MANY_PARMS
- Defined in: <os=>os.$>.h
- Declaration: #define error_TOO_MANY_PARMS 0xDCuerror_CHANNEL
- Defined in: <os=>os.$>.h
- Declaration: #define error_CHANNEL 0xDEuerror_END_OF_FILE
- Defined in: <os=>os.$>.h
- Declaration: #define error_END_OF_FILE 0xDFuerror_BAD_FILING_SYSTEM_NAME
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_FILING_SYSTEM_NAME 0xF8uerror_UNKNOWN_FILING_SYSTEM
- Defined in: <os=>os.$>.h
- Declaration: #define error_UNKNOWN_FILING_SYSTEM 0xF8uerror_BAD_KEY
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_KEY 0xFBuerror_BAD_ADDRESS
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_ADDRESS 0xFCuerror_BAD_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_STRING 0xFDuerror_BAD_ALIAS_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_ALIAS_STRING 0xFDuerror_BAD_PARM_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_PARM_STRING 0xFDuerror_WILD_CARDS
- Defined in: <os=>os.$>.h
- Declaration: #define error_WILD_CARDS 0xFDuerror_BAD_COMMAND
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_COMMAND 0xFEuerror_BAD_MAC_VAL
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_MAC_VAL 0x120uerror_BAD_VAR_NAM
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_VAR_NAM 0x121uerror_BAD_VAR_TYPE
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_VAR_TYPE 0x122uerror_VAR_NO_ROOM
- Defined in: <os=>os.$>.h
- Declaration: #define error_VAR_NO_ROOM 0x123uerror_VAR_CANT_FIND
- Defined in: <os=>os.$>.h
- Declaration: #define error_VAR_CANT_FIND 0x124uerror_VAR_TOO_LONG
- Defined in: <os=>os.$>.h
- Declaration: #define error_VAR_TOO_LONG 0x125uerror_REDIRECT_FAIL
- Defined in: <os=>os.$>.h
- Declaration: #define error_REDIRECT_FAIL 0x140uerror_STACK_FULL
- Defined in: <os=>os.$>.h
- Declaration: #define error_STACK_FULL 0x141uerror_BAD_HEX
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_HEX 0x160uerror_BAD_EXPR
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_EXPR 0x161uerror_BAD_BRA
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_BRA 0x162uerror_STK_OFLO
- Defined in: <os=>os.$>.h
- Declaration: #define error_STK_OFLO 0x163uerror_MISS_OPN
- Defined in: <os=>os.$>.h
- Declaration: #define error_MISS_OPN 0x164uerror_MISS_OPR
- Defined in: <os=>os.$>.h
- Declaration: #define error_MISS_OPR 0x165uerror_BAD_BITS
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_BITS 0x166uerror_STR_OFLO
- Defined in: <os=>os.$>.h
- Declaration: #define error_STR_OFLO 0x167uerror_BAD_ITM
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_ITM 0x168uerror_DIV_ZERO
- Defined in: <os=>os.$>.h
- Declaration: #define error_DIV_ZERO 0x169uerror_BAD_BASE
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_BASE 0x16Auerror_BAD_NUMB
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_NUMB 0x16Buerror_NUMB_TOO_BIG
- Defined in: <os=>os.$>.h
- Declaration: #define error_NUMB_TOO_BIG 0x16Cuerror_BAD_CLAIM_NUM
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_CLAIM_NUM 0x1A1uerror_BAD_RELEASE
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_RELEASE 0x1A2uerror_BAD_DEV_NO
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_DEV_NO 0x1A3uerror_BAD_DEV_VEC_REL
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_DEV_VEC_REL 0x1A4uerror_BAD_ENV_NUMBER
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_ENV_NUMBER 0x1B0uerror_CANT_CANCEL_QUIT
- Defined in: <os=>os.$>.h
- Declaration: #define error_CANT_CANCEL_QUIT 0x1B1uerror_CH_DYNAM_CAO
- Defined in: <os=>os.$>.h
- Declaration: #define error_CH_DYNAM_CAO 0x1C0uerror_CH_DYNAM_NOT_ALL_MOVED
- Defined in: <os=>os.$>.h
- Declaration: #define error_CH_DYNAM_NOT_ALL_MOVED 0x1C1uerror_APL_WSPACE_IN_USE
- Defined in: <os=>os.$>.h
- Declaration: #define error_APL_WSPACE_IN_USE 0x1C2uerror_RAM_FS_UNCHANGEABLE
- Defined in: <os=>os.$>.h
- Declaration: #define error_RAM_FS_UNCHANGEABLE 0x1C3uerror_OSCLI_LONG_LINE
- Defined in: <os=>os.$>.h
- Declaration: #define error_OSCLI_LONG_LINE 0x1E0uerror_OSCLI_TOO_HARD
- Defined in: <os=>os.$>.h
- Declaration: #define error_OSCLI_TOO_HARD 0x1E1uerror_RC_EXC
- Defined in: <os=>os.$>.h
- Declaration: #define error_RC_EXC 0x1E2uerror_RC_NEGATIVE
- Defined in: <os=>os.$>.h
- Declaration: #define error_RC_NEGATIVE 0x1E2uerror_SYS_HEAP_FULL
- Defined in: <os=>os.$>.h
- Declaration: #define error_SYS_HEAP_FULL 0x1E3uerror_BUFF_OVERFLOW
- Defined in: <os=>os.$>.h
- Declaration: #define error_BUFF_OVERFLOW 0x1E4uerror_BAD_TIME
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_TIME 0x1E5uerror_NO_SUCH_SWI
- Defined in: <os=>os.$>.h
- Declaration: #define error_NO_SUCH_SWI 0x1E6uerror_UNIMPLEMENTED
- Defined in: <os=>os.$>.h
- Declaration: #define error_UNIMPLEMENTED 0x1E7uerror_OUT_OF_RANGE
- Defined in: <os=>os.$>.h
- Declaration: #define error_OUT_OF_RANGE 0x1E8uerror_NO_OSCLI_SPECIALS
- Defined in: <os=>os.$>.h
- Declaration: #define error_NO_OSCLI_SPECIALS 0x1E9uerror_BAD_PARAMETERS
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_PARAMETERS 0x1EAuerror_ARG_REPEATED
- Defined in: <os=>os.$>.h
- Declaration: #define error_ARG_REPEATED 0x1EBuerror_BAD_READ_SYS_INFO
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_READ_SYS_INFO 0x1ECuerror_CDAT_STACK_OVERFLOW
- Defined in: <os=>os.$>.h
- Declaration: #define error_CDAT_STACK_OVERFLOW 0x2C0uerror_CDAT_BUFFER_OVERFLOW
- Defined in: <os=>os.$>.h
- Declaration: #define error_CDAT_BUFFER_OVERFLOW 0x2C1uerror_CDAT_BAD_FIELD
- Defined in: <os=>os.$>.h
- Declaration: #define error_CDAT_BAD_FIELD 0x2C2uerror_CANT_START_APPLICATION
- Defined in: <os=>os.$>.h
- Declaration: #define error_CANT_START_APPLICATION 0x600uerror_BAD_COMMAND_OPTION
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_COMMAND_OPTION 0x601uerror_UNKNOWN_SERIAL_OP
- Defined in: <os=>os.$>.h
- Declaration: #define error_UNKNOWN_SERIAL_OP 0x602uerror_BAD_HARD
- Defined in: <os=>os.$>.h
- Declaration: #define error_BAD_HARD 0x603uos_READ_CONTROL_TERMINATED
- Defined in: <os=>os.$>.h
- Declaration: #define os_READ_CONTROL_TERMINATED 0x80000000uos_READ_BYTE
- Defined in: <os=>os.$>.h
- Declaration: #define os_READ_BYTE 0x40000000uos_READ_LIMITED
- Defined in: <os=>os.$>.h
- Declaration: #define os_READ_LIMITED 0x20000000uos_DESTROY_VAR
- Defined in: <os=>os.$>.h
- Declaration: #define os_DESTROY_VAR (-1)os_GS_TERMINATE_ON_SPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_GS_TERMINATE_ON_SPACE 0x20000000uos_GS_RETAIN_STICK
- Defined in: <os=>os.$>.h
- Declaration: #define os_GS_RETAIN_STICK 0x40000000uos_GS_RETAIN_DOUBLE_QUOTE
- Defined in: <os=>os.$>.h
- Declaration: #define os_GS_RETAIN_DOUBLE_QUOTE 0x80000000ukeyv_TYPE_ARCHIMEDES
- Defined in: <os=>os.$>.h
- Declaration: #define keyv_TYPE_ARCHIMEDES 1keyv_TYPE_PCAT
- Defined in: <os=>os.$>.h
- Declaration: #define keyv_TYPE_PCAT 2os_CURRENT_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_CURRENT_MODE ((<os_mode>) -1)os_NONEXISTENT_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_NONEXISTENT_MODE (-1)os_NOT_ENOUGH_MEMORY_FOR_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_NOT_ENOUGH_MEMORY_FOR_MODE (-2)os_NO_ALTERNATIVE_MODE
- Defined in: <os=>os.$>.h
- Declaration: #define os_NO_ALTERNATIVE_MODE ((<os_mode>) -2)os_HANDLER_MEMORY_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_MEMORY_LIMIT 0os_HANDLER_UNDEFINED_INSTRUCTION
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_UNDEFINED_INSTRUCTION 1os_HANDLER_PREFETCH_ABORT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_PREFETCH_ABORT 2os_HANDLER_DATA_ABORT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_DATA_ABORT 3os_HANDLER_ADDRESS_EXCEPTION
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_ADDRESS_EXCEPTION 4os_HANDLER_OTHER_EXCEPTIONS
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_OTHER_EXCEPTIONS 5os_HANDLER_ERROR
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_ERROR 6os_HANDLER_CALL_BACK
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_CALL_BACK 7os_HANDLER_BREAK_PT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_BREAK_PT 8os_HANDLER_ESCAPE
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_ESCAPE 9os_HANDLER_EVENT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_EVENT 10os_HANDLER_EXIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_EXIT 11os_HANDLER_UNUSED_SWI
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_UNUSED_SWI 12os_HANDLER_EXCEPTION_REGISTERS
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_EXCEPTION_REGISTERS 13os_HANDLER_APPLICATION_SPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_APPLICATION_SPACE 14os_HANDLER_CAO
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_CAO 15os_HANDLER_UP_CALL
- Defined in: <os=>os.$>.h
- Declaration: #define os_HANDLER_UP_CALL 16os_SORT_CARDINAL
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_CARDINAL ((void *) 0)os_SORT_INTEGER
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_INTEGER ((void *) 1)os_SORT_CARDINAL_POINTER
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_CARDINAL_POINTER ((void *) 2)os_SORT_INTEGER_POINTER
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_INTEGER_POINTER ((void *) 3)os_SORT_CI_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_CI_STRING ((void *) 4)os_SORT_STRING
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_STRING ((void *) 5)os_SORT_GIVEN_WORKSPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_GIVEN_WORKSPACE 0x20000000uos_SORT_BUILD_ARRAY
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_BUILD_ARRAY 0x40000000uos_SORT_OBJECTS
- Defined in: <os=>os.$>.h
- Declaration: #define os_SORT_OBJECTS 0x80000000uos_AREA_ACCESS_READ_WRITE
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_ACCESS_READ_WRITE 0x0uos_AREA_ACCESS_READ_ONLY
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_ACCESS_READ_ONLY 0x1uos_AREA_ACCESS_NONE
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_ACCESS_NONE 0x3uos_AREA_ACCESS_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_ACCESS_SHIFT 0os_AREA_NOT_BUFFERABLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_NOT_BUFFERABLE 0x10uos_AREA_NOT_CACHEABLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_NOT_CACHEABLE 0x20uos_AREA_DOUBLY_MAPPED
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_DOUBLY_MAPPED 0x40uos_AREA_NO_USER_DRAG
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_NO_USER_DRAG 0x80uos_AREA_NEEDS_GIVEN_PAGES
- Defined in: <os=>os.$>.h
- Declaration: #define os_AREA_NEEDS_GIVEN_PAGES 0x100uos_DYNAMIC_AREA_APPLICATION_SPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_APPLICATION_SPACE (-1)os_DYNAMIC_AREA_SYSTEM_HEAP
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_SYSTEM_HEAP 0os_DYNAMIC_AREA_RMA
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_RMA 1os_DYNAMIC_AREA_SCREEN_MEMORY
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_SCREEN_MEMORY 2os_DYNAMIC_AREA_SYSTEM_SPRITES
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_SYSTEM_SPRITES 3os_DYNAMIC_AREA_FONT_CACHE
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_FONT_CACHE 4os_DYNAMIC_AREA_RAM_DISC
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_RAM_DISC 5os_DYNAMIC_AREA_FREE_POOL
- Defined in: <os=>os.$>.h
- Declaration: #define os_DYNAMIC_AREA_FREE_POOL 6os_COLOUR_SET_BG
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_SET_BG 0x10uos_COLOUR_GIVEN_PATTERN
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_GIVEN_PATTERN 0x20uos_COLOUR_SET_TEXT
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_SET_TEXT 0x40uos_COLOUR_READ
- Defined in: <os=>os.$>.h
- Declaration: #define os_COLOUR_READ 0x80upointerv_TYPE_QUADRATURE
- Defined in: <os=>os.$>.h
- Declaration: #define pointerv_TYPE_QUADRATURE 0pointerv_TYPE_MICROSOFT
- Defined in: <os=>os.$>.h
- Declaration: #define pointerv_TYPE_MICROSOFT 1pointerv_TYPE_MOUSE_SYSTEMS
- Defined in: <os=>os.$>.h
- Declaration: #define pointerv_TYPE_MOUSE_SYSTEMS 2osdynamicarea_ALLOCATE_AREA
- Defined in: <os=>os.$>.h
- Declaration: #define osdynamicarea_ALLOCATE_AREA (-1)osdynamicarea_ALLOCATE_BASE
- Defined in: <os=>os.$>.h
- Declaration: #define osdynamicarea_ALLOCATE_BASE ((byte *) -1)osmemory_GIVEN_PAGE_NO
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_GIVEN_PAGE_NO 0x100uosmemory_GIVEN_LOG_ADDR
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_GIVEN_LOG_ADDR 0x200uosmemory_GIVEN_PHYS_ADDR
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_GIVEN_PHYS_ADDR 0x400uosmemory_RETURN_PAGE_NO
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_RETURN_PAGE_NO 0x800uosmemory_RETURN_LOG_ADDR
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_RETURN_LOG_ADDR 0x1000uosmemory_RETURN_PHYS_ADDR
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_RETURN_PHYS_ADDR 0x2000uosmemory_CACHE
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CACHE 0xC000uosmemory_CACHE_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CACHE_SHIFT 14osmemory_CACHE_DISABLE
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CACHE_DISABLE 0x2uosmemory_CACHE_ENABLE
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CACHE_ENABLE 0x3uosmemory_TYPE
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_TYPE 0xF00uosmemory_TYPE_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_TYPE_SHIFT 8osmemory_TYPE_DRAM
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_TYPE_DRAM 0x1uosmemory_TYPE_VRAM
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_TYPE_VRAM 0x2uosmemory_TYPE_ROM
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_TYPE_ROM 0x3uosmemory_TYPE_IO
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_TYPE_IO 0x4uosmemory_CONTROLLER_NO
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_NO 0xFuosmemory_CONTROLLER_NO_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_NO_SHIFT 0osmemory_CONTROLLER_TYPE
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_TYPE 0xFFFFFFF0uosmemory_CONTROLLER_TYPE_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_TYPE_SHIFT 8osmemory_CONTROLLER_TYPE_EASI
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_TYPE_EASI 0x0uosmemory_CONTROLLER_TYPE_EASI_SPACE
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_TYPE_EASI_SPACE 0x1uosmemory_CONTROLLER_TYPE_VIDC1
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_TYPE_VIDC1 0x2uosmemory_CONTROLLER_TYPE_VIDC20
- Defined in: <os=>os.$>.h
- Declaration: #define osmemory_CONTROLLER_TYPE_VIDC20 0x3uos_HEX1_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HEX1_LIMIT 1os_HEX2_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HEX2_LIMIT 2os_HEX4_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HEX4_LIMIT 4os_HEX6_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HEX6_LIMIT 6os_HEX8_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_HEX8_LIMIT 8os_CARDINAL1_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_CARDINAL1_LIMIT 3os_CARDINAL2_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_CARDINAL2_LIMIT 5os_CARDINAL3_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_CARDINAL3_LIMIT 8os_CARDINAL4_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_CARDINAL4_LIMIT 10os_INTEGER1_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_INTEGER1_LIMIT 4os_INTEGER2_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_INTEGER2_LIMIT 6os_INTEGER3_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_INTEGER3_LIMIT 8os_INTEGER4_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_INTEGER4_LIMIT 11os_BINARY1_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_BINARY1_LIMIT 8os_BINARY2_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_BINARY2_LIMIT 16os_BINARY3_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_BINARY3_LIMIT 24os_BINARY4_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_BINARY4_LIMIT 32os_SPACED_CARDINAL1_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_CARDINAL1_LIMIT 3os_SPACED_CARDINAL2_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_CARDINAL2_LIMIT 6os_SPACED_CARDINAL3_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_CARDINAL3_LIMIT 10os_SPACED_CARDINAL4_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_CARDINAL4_LIMIT 13os_SPACED_INTEGER1_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_INTEGER1_LIMIT 4os_SPACED_INTEGER2_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_INTEGER2_LIMIT 7os_SPACED_INTEGER3_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_INTEGER3_LIMIT 10os_SPACED_INTEGER4_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_SPACED_INTEGER4_LIMIT 14os_FIXED_NET_STATION_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_FIXED_NET_STATION_LIMIT 7os_NET_STATION_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_NET_STATION_LIMIT 7os_FIXED_FILE_SIZE_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_FIXED_FILE_SIZE_LIMIT 11os_FILE_SIZE_LIMIT
- Defined in: <os=>os.$>.h
- Declaration: #define os_FILE_SIZE_LIMIT 11os_TRANSITION_MOUSE_RIGHT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_MOUSE_RIGHT 0x1uos_TRANSITION_MOUSE_MIDDLE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_MOUSE_MIDDLE 0x2uos_TRANSITION_MOUSE_LEFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_MOUSE_LEFT 0x4uos_TRANSITION_KEY_ESCAPE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_ESCAPE ((byte) 0)os_TRANSITION_KEY_F1
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F1 ((byte) 1)os_TRANSITION_KEY_F2
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F2 ((byte) 2)os_TRANSITION_KEY_F3
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F3 ((byte) 3)os_TRANSITION_KEY_F4
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F4 ((byte) 4)os_TRANSITION_KEY_F5
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F5 ((byte) 5)os_TRANSITION_KEY_F6
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F6 ((byte) 6)os_TRANSITION_KEY_F7
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F7 ((byte) 7)os_TRANSITION_KEY_F8
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F8 ((byte) 8)os_TRANSITION_KEY_F9
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F9 ((byte) 9)os_TRANSITION_KEY_F10
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F10 ((byte) 10)os_TRANSITION_KEY_F11
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F11 ((byte) 11)os_TRANSITION_KEY_F12
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_F12 ((byte) 12)os_TRANSITION_KEY_PRINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_PRINT ((byte) 13)os_TRANSITION_KEY_SCROLL_LOCK
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_SCROLL_LOCK ((byte) 14)os_TRANSITION_KEY_BREAK
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_BREAK ((byte) 15)os_TRANSITION_KEY_GRAVE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_GRAVE ((byte) 16)os_TRANSITION_KEY1
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY1 ((byte) 17)os_TRANSITION_KEY2
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY2 ((byte) 18)os_TRANSITION_KEY3
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY3 ((byte) 19)os_TRANSITION_KEY4
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY4 ((byte) 20)os_TRANSITION_KEY5
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY5 ((byte) 21)os_TRANSITION_KEY6
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY6 ((byte) 22)os_TRANSITION_KEY7
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY7 ((byte) 23)os_TRANSITION_KEY8
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY8 ((byte) 24)os_TRANSITION_KEY9
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY9 ((byte) 25)os_TRANSITION_KEY0
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY0 ((byte) 26)os_TRANSITION_KEY_HYPHEN
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_HYPHEN ((byte) 27)os_TRANSITION_KEY_EQUALS
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_EQUALS ((byte) 28)os_TRANSITION_KEY_POUND
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_POUND ((byte) 29)os_TRANSITION_KEY_BACKSPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_BACKSPACE ((byte) 30)os_TRANSITION_KEY_INSERT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_INSERT ((byte) 31)os_TRANSITION_KEY_HOME
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_HOME ((byte) 32)os_TRANSITION_KEY_PAGE_UP
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_PAGE_UP ((byte) 33)os_TRANSITION_KEY_NUM_LOCK
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_NUM_LOCK ((byte) 34)os_TRANSITION_KEY_KEYPAD_SLASH
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD_SLASH ((byte) 35)os_TRANSITION_KEY_KEYPAD_STAR
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD_STAR ((byte) 36)os_TRANSITION_KEY_KEYPAD_HASH
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD_HASH ((byte) 37)os_TRANSITION_KEY_TAB
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_TAB ((byte) 38)os_TRANSITION_KEYQ
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYQ ((byte) 39)os_TRANSITION_KEYW
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYW ((byte) 40)os_TRANSITION_KEYE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYE ((byte) 41)os_TRANSITION_KEYR
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYR ((byte) 42)os_TRANSITION_KEYT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYT ((byte) 43)os_TRANSITION_KEYY
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYY ((byte) 44)os_TRANSITION_KEYU
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYU ((byte) 45)os_TRANSITION_KEYI
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYI ((byte) 46)os_TRANSITION_KEYO
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYO ((byte) 47)os_TRANSITION_KEYP
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYP ((byte) 48)os_TRANSITION_KEY_SQUARE_BRA
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_SQUARE_BRA ((byte) 49)os_TRANSITION_KEY_SQUARE_KET
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_SQUARE_KET ((byte) 50)os_TRANSITION_KEY_BACKSLASH
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_BACKSLASH ((byte) 51)os_TRANSITION_KEY_DELETE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_DELETE ((byte) 52)os_TRANSITION_KEY_COPY
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_COPY ((byte) 53)os_TRANSITION_KEY_PAGE_DOWN
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_PAGE_DOWN ((byte) 54)os_TRANSITION_KEY_KEYPAD7
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD7 ((byte) 55)os_TRANSITION_KEY_KEYPAD8
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD8 ((byte) 56)os_TRANSITION_KEY_KEYPAD9
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD9 ((byte) 57)os_TRANSITION_KEY_KEYPAD_MINUS
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD_MINUS ((byte) 58)os_TRANSITION_KEY_LEFT_CONTROL
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_LEFT_CONTROL ((byte) 59)os_TRANSITION_KEYA
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYA ((byte) 60)os_TRANSITION_KEYS
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYS ((byte) 61)os_TRANSITION_KEYD
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYD ((byte) 62)os_TRANSITION_KEYF
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYF ((byte) 63)os_TRANSITION_KEYG
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYG ((byte) 64)os_TRANSITION_KEYH
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYH ((byte) 65)os_TRANSITION_KEYJ
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYJ ((byte) 66)os_TRANSITION_KEYK
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYK ((byte) 67)os_TRANSITION_KEYL
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYL ((byte) 68)os_TRANSITION_KEY_SEMICOLON
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_SEMICOLON ((byte) 69)os_TRANSITION_KEY_ACUTE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_ACUTE ((byte) 70)os_TRANSITION_KEY_RETURN
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_RETURN ((byte) 71)os_TRANSITION_KEY_KEYPAD4
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD4 ((byte) 72)os_TRANSITION_KEY_KEYPAD5
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD5 ((byte) 73)os_TRANSITION_KEY_KEYPAD6
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD6 ((byte) 74)os_TRANSITION_KEY_KEYPAD_PLUS
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD_PLUS ((byte) 75)os_TRANSITION_KEY_LEFT_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_LEFT_SHIFT ((byte) 76)os_TRANSITION_KEYZ
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYZ ((byte) 78)os_TRANSITION_KEYX
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYX ((byte) 79)os_TRANSITION_KEYC
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYC ((byte) 80)os_TRANSITION_KEYV
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYV ((byte) 81)os_TRANSITION_KEYB
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYB ((byte) 82)os_TRANSITION_KEYN
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYN ((byte) 83)os_TRANSITION_KEYM
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEYM ((byte) 84)os_TRANSITION_KEY_COMMA
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_COMMA ((byte) 85)os_TRANSITION_KEY_POINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_POINT ((byte) 86)os_TRANSITION_KEY_SLASH
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_SLASH ((byte) 87)os_TRANSITION_KEY_RIGHT_SHIFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_RIGHT_SHIFT ((byte) 88)os_TRANSITION_KEY_UP
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_UP ((byte) 89)os_TRANSITION_KEY_KEYPAD1
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD1 ((byte) 90)os_TRANSITION_KEY_KEYPAD2
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD2 ((byte) 91)os_TRANSITION_KEY_KEYPAD3
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD3 ((byte) 92)os_TRANSITION_KEY_CAPS_LOCK
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_CAPS_LOCK ((byte) 93)os_TRANSITION_KEY_LEFT_ALT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_LEFT_ALT ((byte) 94)os_TRANSITION_KEY_SPACE
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_SPACE ((byte) 95)os_TRANSITION_KEY_RIGHT_ALT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_RIGHT_ALT ((byte) 96)os_TRANSITION_KEY_RIGHT_CONTROL
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_RIGHT_CONTROL ((byte) 97)os_TRANSITION_KEY_LEFT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_LEFT ((byte) 98)os_TRANSITION_KEY_DOWN
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_DOWN ((byte) 99)os_TRANSITION_KEY_RIGHT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_RIGHT ((byte) 100)os_TRANSITION_KEY_KEYPAD0
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD0 ((byte) 101)os_TRANSITION_KEY_KEYPAD_POINT
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_KEYPAD_POINT ((byte) 102)os_TRANSITION_KEY_ENTER
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_KEY_ENTER ((byte) 103)os_TRANSITION_UP
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_UP 0os_TRANSITION_DOWN
- Defined in: <os=>os.$>.h
- Declaration: #define os_TRANSITION_DOWN 1xos_writec
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_writec (char c);
- Summary: Writes a character to all of the active output streamsos_writec
- Defined in: <os=>os.$>.h
- Declaration: extern void os_writec (char c);
- Summary: Writes a character to all of the active output streamsxwrchv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xwrchv (char c);
- Summary: OS_WriteC vectorwrchv
- Defined in: <os=>os.$>.h
- Declaration: extern void wrchv (char c);
- Summary: OS_WriteC vectorxos_writes
- Writes the following string to all of the active output streams (cannot be called via APCS)os_writes
- Writes the following string to all of the active output streams (cannot be called via APCS)xos_write0
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_write0 (char *s);
- Summary: Writes a string to all of the active output streamsos_write0
- Defined in: <os=>os.$>.h
- Declaration: extern void os_write0 (char *s);
- Summary: Writes a string to all of the active output streamsxos_new_line
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_new_line (void);
- Summary: Writes a line feed followed by a carriage return to all of the active output streamsos_new_line
- Defined in: <os=>os.$>.h
- Declaration: extern void os_new_line (void);
- Summary: Writes a line feed followed by a carriage return to all of the active output streamsxos_readc
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_readc (char *c,
- bits *psr);
- Summary: Reads a character from the input streamos_readc
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_readc (char *c);
- Summary: Reads a character from the input streamxrdchv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xrdchv (char *c,
- bits *psr);
- Summary: OS_ReadC vectorrdchv
- Defined in: <os=>os.$>.h
- Declaration: extern bits rdchv (char *c);
- Summary: OS_ReadC vectorxos_cli
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_cli (char *command);
- Summary: Processes a supervisor commandos_cli
- Defined in: <os=>os.$>.h
- Declaration: extern void os_cli (char *command);
- Summary: Processes a supervisor commandxcliv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xcliv (char *command);
- Summary: OS_CLI vectorcliv
- Defined in: <os=>os.$>.h
- Declaration: extern void cliv (char *command);
- Summary: OS_CLI vectorxos_read_line
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_line (char *buffer,
- int size,
- char min_char,
- char max_char,
- int *used,
- bits *psr);
- Summary: Reads a line from the input streamos_read_line
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_read_line (char *buffer,
- int size,
- char min_char,
- char max_char,
- int *used);
- Summary: Reads a line from the input streamxos_read_line_given_echo
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_line_given_echo (char *buffer,
- int size,
- char min_char,
- char max_char,
- char echo,
- int *used,
- bits *psr);
- Summary: Reads a line from the input stream, using the given echo characteros_read_line_given_echo
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_read_line_given_echo (char *buffer,
- int size,
- char min_char,
- char max_char,
- char echo,
- int *used);
- Summary: Reads a line from the input stream, using the given echo characterxos_read_line_suppress_invalid
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_line_suppress_invalid (char *buffer,
- int size,
- char min_char,
- char max_char,
- int *used,
- bits *psr);
- Summary: Reads a line from the input stream, not echoing invalid charactersos_read_line_suppress_invalid
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_read_line_suppress_invalid (char *buffer,
- int size,
- char min_char,
- char max_char,
- int *used);
- Summary: Reads a line from the input stream, not echoing invalid charactersxos_read_line_given_echo_suppress_invalid
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_line_given_echo_suppress_invalid (char *buffer,
- int size,
- char min_char,
- char max_char,
- char echo,
- int *used,
- bits *psr);
- Summary: Reads a line from the input stream, using the given echo character and not echoing invalid charactersos_read_line_given_echo_suppress_invalid
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_read_line_given_echo_suppress_invalid (char *buffer,
- int size,
- char min_char,
- char max_char,
- char echo,
- int *used);
- Summary: Reads a line from the input stream, using the given echo character and not echoing invalid charactersxreadlinev
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xreadlinev (char *buffer,
- int size,
- char min_char,
- char max_char,
- char echo,
- int *used,
- bits *psr);
- Summary: OS_ReadLine vectorreadlinev
- Defined in: <os=>os.$>.h
- Declaration: extern bits readlinev (char *buffer,
- int size,
- char min_char,
- char max_char,
- char echo,
- int *used);
- Summary: OS_ReadLine vectorxos_control
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_control (void *error_handler,
- <os_error> *error_buffer,
- void *escape_handler,
- void *event_handler,
- void **old_error_handler,
- <os_error> **old_error_buffer,
- void **old_escape_handler,
- void **old_event_handler);
- Summary: Reads/writes handler addresses (prefer OS_ChangeEnvironment)os_control
- Defined in: <os=>os.$>.h
- Declaration: extern void os_control (void *error_handler,
- <os_error> *error_buffer,
- void *escape_handler,
- void *event_handler,
- void **old_error_handler,
- <os_error> **old_error_buffer,
- void **old_escape_handler,
- void **old_event_handler);
- Summary: Reads/writes handler addresses (prefer OS_ChangeEnvironment)xos_get_env
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_get_env (char **command,
- byte **ram_limit,
- <os_date_and_time> **start);
- Summary: Reads environment parametersos_get_env
- Defined in: <os=>os.$>.h
- Declaration: extern char *os_get_env (byte **ram_limit,
- <os_date_and_time> **start);
- Summary: Reads environment parametersxos_exit
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_exit (<os_error> *error,
- int rc);
- Summary: Passes control to the most recent exit handleros_exit
- Defined in: <os=>os.$>.h
- Declaration: extern void os_exit (<os_error> *error,
- int rc);
- Summary: Passes control to the most recent exit handlerxos_set_env
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_env (void *exit_handler,
- byte *ram_limit,
- void *undefined_instruction_handler,
- void *prefetch_abort_handler,
- void *data_abort_handler,
- void *address_exception_handler,
- void **old_exit_handler,
- byte **old_ram_limit,
- void **old_undefined_instruction_handler,
- void **old_prefetch_abort_handler,
- void **old_data_abort_handler,
- void **old_address_exception_handler);
- Summary: Sets environment parameters (prefer OS_ChangeEnvironment)os_set_env
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_env (void *exit_handler,
- byte *ram_limit,
- void *undefined_instruction_handler,
- void *prefetch_abort_handler,
- void *data_abort_handler,
- void *address_exception_handler,
- void **old_exit_handler,
- byte **old_ram_limit,
- void **old_undefined_instruction_handler,
- void **old_prefetch_abort_handler,
- void **old_data_abort_handler,
- void **old_address_exception_handler);
- Summary: Sets environment parameters (prefer OS_ChangeEnvironment)xos_int_on
- Enables interrupts (cannot be called via APCS)os_int_on
- Enables interrupts (cannot be called via APCS)xos_int_off
- Disables interrupts (cannot be called via APCS)os_int_off
- Disables interrupts (cannot be called via APCS)xirqv
- Called when an unknown IRQ is detectedirqv
- Called when an unknown IRQ is detectedxos_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_call_back (<os_register_block> *register_block,
- void *call_back_handler,
- <os_register_block> **old_register_block,
- void **old_call_back_handler);
- Summary: Sets up the callback handler (prefer OS_ChangeEnvironment)os_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern void os_call_back (<os_register_block> *register_block,
- void *call_back_handler,
- <os_register_block> **old_register_block,
- void **old_call_back_handler);
- Summary: Sets up the callback handler (prefer OS_ChangeEnvironment)xos_enter_os
- Sets the processor to SVC mode (cannot be called via APCS)os_enter_os
- Sets the processor to SVC mode (cannot be called via APCS)xos_break_pt
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_break_pt (void);
- Summary: Causes a break point trap to occur and the break point handler to be enteredos_break_pt
- Defined in: <os=>os.$>.h
- Declaration: extern void os_break_pt (void);
- Summary: Causes a break point trap to occur and the break point handler to be enteredxos_break_ctrl
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_break_ctrl (<os_register_block> *register_block,
- void *break_pt_handler,
- <os_register_block> **old_register_block,
- void **old_break_pt_handler);
- Summary: Sets up the break point handler (prefer OS_ChangeEnvironment)os_break_ctrl
- Defined in: <os=>os.$>.h
- Declaration: extern void os_break_ctrl (<os_register_block> *register_block,
- void *break_pt_handler,
- <os_register_block> **old_register_block,
- void **old_break_pt_handler);
- Summary: Sets up the break point handler (prefer OS_ChangeEnvironment)xos_unused_swi
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_unused_swi (void *unused_swi_handler,
- void **old_unused_swi_handler);
- Summary: Sets up the handler for unused SWI's (prefer OS_ChangeEnvironment)os_unused_swi
- Defined in: <os=>os.$>.h
- Declaration: extern void *os_unused_swi (void *unused_swi_handler);
- Summary: Sets up the handler for unused SWI's (prefer OS_ChangeEnvironment)xukswiv
- Called when an unknown SWI instruction is issued (cannot be called via APCS)ukswiv
- Called when an unknown SWI instruction is issued (cannot be called via APCS)xos_update_memc
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_update_memc (bits value,
- bits mask,
- bits *old_value);
- Summary: Reads or alters the contents of the MEMC control registeros_update_memc
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_update_memc (bits value,
- bits mask);
- Summary: Reads or alters the contents of the MEMC control registerxos_set_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_call_back (void);
- Summary: Causes a call to the callback handleros_set_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_call_back (void);
- Summary: Causes a call to the callback handlerxos_mouse
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_mouse (int *x,
- int *y,
- bits *buttons,
- <os_t> *t);
- Summary: Reads a mouse state from the bufferos_mouse
- Defined in: <os=>os.$>.h
- Declaration: extern void os_mouse (int *x,
- int *y,
- bits *buttons,
- <os_t> *t);
- Summary: Reads a mouse state from the bufferxmousev
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xmousev (int *x,
- int *y,
- bits *buttons,
- <os_t> *t);
- Summary: OS_Mouse vectormousev
- Defined in: <os=>os.$>.h
- Declaration: extern void mousev (int *x,
- int *y,
- bits *buttons,
- <os_t> *t);
- Summary: OS_Mouse vectorxos_claim
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_claim (int vector,
- void *routine,
- byte *handle);
- Summary: Adds a routine to the list of those that claim a vectoros_claim
- Defined in: <os=>os.$>.h
- Declaration: extern void os_claim (int vector,
- void *routine,
- byte *handle);
- Summary: Adds a routine to the list of those that claim a vectorxos_release
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_release (int vector,
- void *routine,
- byte *handle);
- Summary: Removes a routine from the list of those that claim a vectoros_release
- Defined in: <os=>os.$>.h
- Declaration: extern void os_release (int vector,
- void *routine,
- byte *handle);
- Summary: Removes a routine from the list of those that claim a vectorxos_read_unsigned
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_unsigned (bits flags,
- char *number,
- int limit,
- char **end,
- int *value);
- Summary: Converts a string to an unsigned numberos_read_unsigned
- Defined in: <os=>os.$>.h
- Declaration: extern int os_read_unsigned (bits flags,
- char *number,
- int limit,
- char **end);
- Summary: Converts a string to an unsigned numberxos_generate_event
- Generates an eventos_generate_event
- Generates an eventxeventv
- OS_GenerateEvent vectoreventv
- OS_GenerateEvent vectorxos_read_var_val
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_var_val (char *var,
- char *value,
- int size,
- int context,
- int var_type,
- int *used,
- int *context_out,
- int *var_type_out);
- Summary: Reads a variable valueos_read_var_val
- Defined in: <os=>os.$>.h
- Declaration: extern int os_read_var_val (char *var,
- char *value,
- int size,
- int context,
- int var_type,
- int *used,
- int *var_type_out);
- Summary: Reads a variable valuexos_set_var_val
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_var_val (char *var,
- byte *value,
- int size,
- int context,
- int var_type,
- int *context_out,
- int *var_type_out);
- Summary: Writes a variable valueos_set_var_val
- Defined in: <os=>os.$>.h
- Declaration: extern int os_set_var_val (char *var,
- byte *value,
- int size,
- int context,
- int var_type,
- int *var_type_out);
- Summary: Writes a variable valuexos_gs_init
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_gs_init (char *s,
- bits flags,
- int *context1,
- int *context2);
- Summary: Initialises context for use by OS_GSReados_gs_init
- Defined in: <os=>os.$>.h
- Declaration: extern void os_gs_init (char *s,
- bits flags,
- int *context1,
- int *context2);
- Summary: Initialises context for use by OS_GSReadxos_gs_read
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_gs_read (int context1,
- int context2,
- int *context1_out,
- char *c,
- int *context2_out,
- bits *psr);
- Summary: Returns a character from a string which has been initialised by OS_GSInitos_gs_read
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_gs_read (int context1,
- int context2,
- int *context1_out,
- char *c,
- int *context2_out);
- Summary: Returns a character from a string which has been initialised by OS_GSInitxos_gs_trans
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_gs_trans (char *s,
- char *buffer,
- int size,
- char **end,
- bits *psr);
- Summary: Equivalent to a call to OS_GSInit and repeated calls to OS_GSReados_gs_trans
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_gs_trans (char *s,
- char *buffer,
- int size,
- char **end);
- Summary: Equivalent to a call to OS_GSInit and repeated calls to OS_GSReadxos_binary_to_decimal
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_binary_to_decimal (int i,
- char *buffer,
- int size,
- int *used);
- Summary: Converts a signed number to a stringos_binary_to_decimal
- Defined in: <os=>os.$>.h
- Declaration: extern void os_binary_to_decimal (int i,
- char *buffer,
- int size,
- int *used);
- Summary: Converts a signed number to a stringxos_change_dynamic_area
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_change_dynamic_area (int area_type,
- int change,
- int *change_out);
- Summary: Alters the space sllocation of a dynamic areaos_change_dynamic_area
- Defined in: <os=>os.$>.h
- Declaration: extern int os_change_dynamic_area (int area_type,
- int change);
- Summary: Alters the space sllocation of a dynamic areaxos_generate_error
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_generate_error (<os_error> *error);
- Summary: Generates an error and invokes the error handleros_generate_error
- Defined in: <os=>os.$>.h
- Declaration: extern void os_generate_error (<os_error> *error);
- Summary: Generates an error and invokes the error handlerxerrorv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xerrorv (void);
- Summary: OS_GenerateError vectorerrorv
- Defined in: <os=>os.$>.h
- Declaration: extern void errorv (void);
- Summary: OS_GenerateError vectorxos_read_escape_state
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_escape_state (bits *psr);
- Summary: Checks whether an escape condition has occurredos_read_escape_state
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_read_escape_state (void);
- Summary: Checks whether an escape condition has occurredxos_evaluate_expression
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_evaluate_expression (char *expr,
- char *buffer,
- int size,
- bool *expr_is_str,
- int *int_value_or_str_used);
- Summary: Evaluates a string expression and returns an integer or string resultos_evaluate_expression
- Defined in: <os=>os.$>.h
- Declaration: extern void os_evaluate_expression (char *expr,
- char *buffer,
- int size,
- bool *expr_is_str,
- int *int_value_or_str_used);
- Summary: Evaluates a string expression and returns an integer or string resultxos_read_palette
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_palette (<os_colour_number> entry,
- int colour_type,
- <os_colour> *on,
- <os_colour> *off);
- Summary: Reads the palette setting of a colouros_read_palette
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_palette (<os_colour_number> entry,
- int colour_type,
- <os_colour> *on,
- <os_colour> *off);
- Summary: Reads the palette setting of a colourxpalettev
- Called whenever the palette is to be read or writtenpalettev
- Called whenever the palette is to be read or writtenxpalettev_read_entry
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_read_entry (<os_colour_number> entry,
- int colour_type,
- <os_colour> *on,
- <os_colour> *off,
- bool *incomplete);
- Summary: Reads the palettepalettev_read_entry
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_read_entry (<os_colour_number> entry,
- int colour_type,
- <os_colour> *on,
- <os_colour> *off);
- Summary: Reads the palettexpalettev_set_entry
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_set_entry (<os_colour_number> entry,
- int colour_type,
- <os_colour> on,
- <os_colour> off,
- bool *incomplete);
- Summary: Sets the palettepalettev_set_entry
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_set_entry (<os_colour_number> entry,
- int colour_type,
- <os_colour> on,
- <os_colour> off);
- Summary: Sets the palettexpalettev_set_on
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_set_on (bool *incomplete);
- Summary: Sets the flash state to onpalettev_set_on
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_set_on (void);
- Summary: Sets the flash state to onxpalettev_set_off
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_set_off (bool *incomplete);
- Summary: Sets the flash state to offpalettev_set_off
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_set_off (void);
- Summary: Sets the flash state to offxpalettev_default
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_default (bool *incomplete);
- Summary: Sets the palette to the defaultpalettev_default
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_default (void);
- Summary: Sets the palette to the defaultxpalettev_read_entries
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_read_entries (int *entry_list,
- bits colour_type_and_entry_count,
- <os_palette> *on,
- <os_palette> *off,
- bool *incomplete);
- Summary: Reads palette entriespalettev_read_entries
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_read_entries (int *entry_list,
- bits colour_type_and_entry_count,
- <os_palette> *on,
- <os_palette> *off);
- Summary: Reads palette entriesxpalettev_write_entries
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_write_entries (int *entry_list,
- bits colour_type_and_entry_count,
- <os_palette> *palette,
- bool *incomplete);
- Summary: Writes palette entriespalettev_write_entries
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_write_entries (int *entry_list,
- bits colour_type_and_entry_count,
- <os_palette> *palette);
- Summary: Writes palette entriesxpalettev_set_gamma_corrections
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpalettev_set_gamma_corrections (<os_correction_table> *red_table,
- <os_correction_table> *green_table,
- <os_correction_table> *blue_table,
- bool *incomplete);
- Summary: Sets the gamma correction tablespalettev_set_gamma_corrections
- Defined in: <os=>os.$>.h
- Declaration: extern bool palettev_set_gamma_corrections (<os_correction_table> *red_table,
- <os_correction_table> *green_table,
- <os_correction_table> *blue_table);
- Summary: Sets the gamma correction tablesxos_service_call
- Issues a service callos_service_call
- Issues a service callxos_read_vdu_variables
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_vdu_variables (<os_vdu_var_list> *var_list,
- int *value_list);
- Summary: Reads a series of VDU variablesos_read_vdu_variables
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_vdu_variables (<os_vdu_var_list> *var_list,
- int *value_list);
- Summary: Reads a series of VDU variablesxos_read_point
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_point (int x,
- int y,
- <os_gcol> *gcol,
- <os_tint> *tint,
- bool *off_screen);
- Summary: Reads the colour of a pointos_read_point
- Defined in: <os=>os.$>.h
- Declaration: extern bool os_read_point (int x,
- int y,
- <os_gcol> *gcol,
- <os_tint> *tint);
- Summary: Reads the colour of a pointxos_up_call
- Calls up from RISC OS to an application to warn of particular situationsos_up_call
- Calls up from RISC OS to an application to warn of particular situationsxupcallv
- OS_UpCall vectorupcallv
- OS_UpCall vectorxos_call_a_vector
- Calls a vector directlyos_call_a_vector
- Calls a vector directlyxos_read_mode_variable
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_mode_variable (<os_mode> mode,
- int var,
- int *var_val,
- bits *psr);
- Summary: Reads information about a screen modeos_read_mode_variable
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_read_mode_variable (<os_mode> mode,
- int var,
- int *var_val);
- Summary: Reads information about a screen modexos_remove_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_remove_cursors (void);
- Summary: Removes the cursors from the screenos_remove_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern void os_remove_cursors (void);
- Summary: Removes the cursors from the screenxos_restore_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_restore_cursors (void);
- Summary: Restores the cursors to the screenos_restore_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern void os_restore_cursors (void);
- Summary: Restores the cursors to the screenxos_swi_number_to_string
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_swi_number_to_string (int swi,
- char *buffer,
- int size,
- int *used);
- Summary: Converts a SWI number to a string containing its nameos_swi_number_to_string
- Defined in: <os=>os.$>.h
- Declaration: extern void os_swi_number_to_string (int swi,
- char *buffer,
- int size,
- int *used);
- Summary: Converts a SWI number to a string containing its namexos_swi_number_from_string
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_swi_number_from_string (char *swi_name,
- int *swi);
- Summary: Converts a string to a SWI number if validos_swi_number_from_string
- Defined in: <os=>os.$>.h
- Declaration: extern int os_swi_number_from_string (char *swi_name);
- Summary: Converts a string to a SWI number if validxos_validate_address
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_validate_address (byte *min,
- byte *max,
- bits *psr);
- Summary: Checks that a range of address are in logical RAMos_validate_address
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_validate_address (byte *min,
- byte *max);
- Summary: Checks that a range of address are in logical RAMxos_call_after
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_call_after (int delay,
- void *code,
- byte *handle);
- Summary: Calls a specified address after a delayos_call_after
- Defined in: <os=>os.$>.h
- Declaration: extern void os_call_after (int delay,
- void *code,
- byte *handle);
- Summary: Calls a specified address after a delayxos_call_every
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_call_every (int delay,
- void *code,
- byte *handle);
- Summary: Calls a specified address every time a delay elapsesos_call_every
- Defined in: <os=>os.$>.h
- Declaration: extern void os_call_every (int delay,
- void *code,
- byte *handle);
- Summary: Calls a specified address every time a delay elapsesxos_remove_ticker_event
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_remove_ticker_event (void *code,
- byte *handle);
- Summary: Removes a given call address and handle value from the ticker event listos_remove_ticker_event
- Defined in: <os=>os.$>.h
- Declaration: extern void os_remove_ticker_event (void *code,
- byte *handle);
- Summary: Removes a given call address and handle value from the ticker event listxtickerv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xtickerv (void);
- Summary: Called every centisecondtickerv
- Defined in: <os=>os.$>.h
- Declaration: extern void tickerv (void);
- Summary: Called every centisecondxos_install_key_handler
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_install_key_handler (<os_key_handler> *key_handler,
- <os_key_handler> **old_key_handler);
- Summary: Installs a key handler or reads the address of the current oneos_install_key_handler
- Defined in: <os=>os.$>.h
- Declaration: extern <os_key_handler> *os_install_key_handler (<os_key_handler> *key_handler);
- Summary: Installs a key handler or reads the address of the current onexkeyv
- Used to communicate between the kernel and a keyboard device driverkeyv
- Used to communicate between the kernel and a keyboard device driverxkeyv_present
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xkeyv_present (int keyboard_type);
- Summary: The given keyboard is presentkeyv_present
- Defined in: <os=>os.$>.h
- Declaration: extern void keyv_present (int keyboard_type);
- Summary: The given keyboard is presentxkeyv_transition_up
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xkeyv_transition_up (int key);
- Summary: Key releasedkeyv_transition_up
- Defined in: <os=>os.$>.h
- Declaration: extern void keyv_transition_up (int key);
- Summary: Key releasedxkeyv_transition_down
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xkeyv_transition_down (int key);
- Summary: Key pressedkeyv_transition_down
- Defined in: <os=>os.$>.h
- Declaration: extern void keyv_transition_down (int key);
- Summary: Key pressedxkeyv_led_state
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xkeyv_led_state (bits flags);
- Summary: Notifies driver of LED statekeyv_led_state
- Defined in: <os=>os.$>.h
- Declaration: extern void keyv_led_state (bits flags);
- Summary: Notifies driver of LED statexkeyv_enable_drivers
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xkeyv_enable_drivers (void);
- Summary: Enables keyboard device driverskeyv_enable_drivers
- Defined in: <os=>os.$>.h
- Declaration: extern void keyv_enable_drivers (void);
- Summary: Enables keyboard device driversxos_check_mode_valid
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_check_mode_valid (<os_mode> mode,
- int *mode_status,
- <os_mode> *alternative_mode,
- bits *psr);
- Summary: Checks if it is possible to change into a specified modeos_check_mode_valid
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_check_mode_valid (<os_mode> mode,
- int *mode_status,
- <os_mode> *alternative_mode);
- Summary: Checks if it is possible to change into a specified modexos_change_environment
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_change_environment (int handler_type,
- void *handler,
- byte *handle,
- byte *buffer,
- void **old_handler,
- byte **old_handle,
- byte **old_buffer);
- Summary: Installs a handleros_change_environment
- Defined in: <os=>os.$>.h
- Declaration: extern void *os_change_environment (int handler_type,
- void *handler,
- byte *handle,
- byte *buffer,
- byte **old_handle,
- byte **old_buffer);
- Summary: Installs a handlerxchangeenvironmentv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xchangeenvironmentv (int handler_type,
- void *handler,
- byte *handle,
- byte *buffer,
- void **old_handler,
- byte **old_handle,
- byte **old_buffer);
- Summary: OS_ChangeEnvironment vectorchangeenvironmentv
- Defined in: <os=>os.$>.h
- Declaration: extern void changeenvironmentv (int handler_type,
- void *handler,
- byte *handle,
- byte *buffer,
- void **old_handler,
- byte **old_handle,
- byte **old_buffer);
- Summary: OS_ChangeEnvironment vectorxos_claim_screen_memory
- Uses spare screen memoryos_claim_screen_memory
- Uses spare screen memoryxosclaimscreenmemory_alloc
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosclaimscreenmemory_alloc (int size,
- int *size_out,
- void **blk,
- bits *psr);
- Summary: Claims spare screen memoryosclaimscreenmemory_alloc
- Defined in: <os=>os.$>.h
- Declaration: extern bits osclaimscreenmemory_alloc (int size,
- int *size_out,
- void **blk);
- Summary: Claims spare screen memoryxosclaimscreenmemory_free
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosclaimscreenmemory_free (void);
- Summary: Releases spare screen memoryosclaimscreenmemory_free
- Defined in: <os=>os.$>.h
- Declaration: extern void osclaimscreenmemory_free (void);
- Summary: Releases spare screen memoryxos_read_monotonic_time
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_monotonic_time (<os_t> *t);
- Summary: Returns the number of centiseconds since the last hard resetos_read_monotonic_time
- Defined in: <os=>os.$>.h
- Declaration: extern <os_t> os_read_monotonic_time (void);
- Summary: Returns the number of centiseconds since the last hard resetxos_substitute_args
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_substitute_args (char *args,
- char *buffer,
- int size,
- char *source,
- int source_size,
- int *used);
- Summary: Substitutes command line argumentsos_substitute_args
- Defined in: <os=>os.$>.h
- Declaration: extern void os_substitute_args (char *args,
- char *buffer,
- int size,
- char *source,
- int source_size,
- int *used);
- Summary: Substitutes command line argumentsxos_pretty_print
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_pretty_print (char *string,
- byte *dictionary,
- char *special);
- Summary: Writes a string with some formatting to all of the active output streamsos_pretty_print
- Defined in: <os=>os.$>.h
- Declaration: extern void os_pretty_print (char *string,
- byte *dictionary,
- char *special);
- Summary: Writes a string with some formatting to all of the active output streamsxos_plot
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_plot (int plot_code,
- int x,
- int y);
- Summary: Direct VDU call to general plot commandos_plot
- Defined in: <os=>os.$>.h
- Declaration: extern void os_plot (int plot_code,
- int x,
- int y);
- Summary: Direct VDU call to general plot commandxukplotv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xukplotv (int plot_code);
- Summary: Called when an unknown OS_Plot command is issuedukplotv
- Defined in: <os=>os.$>.h
- Declaration: extern void ukplotv (int plot_code);
- Summary: Called when an unknown OS_Plot command is issuedxos_writen
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_writen (char *s,
- int size);
- Summary: Writes a counted string to all of the active output streamsos_writen
- Defined in: <os=>os.$>.h
- Declaration: extern void os_writen (char *s,
- int size);
- Summary: Writes a counted string to all of the active output streamsxos_add_to_vector
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_add_to_vector (int vector,
- void *routine,
- byte *handle);
- Summary: Adds a routine to the list of those that claim a vectoros_add_to_vector
- Defined in: <os=>os.$>.h
- Declaration: extern void os_add_to_vector (int vector,
- void *routine,
- byte *handle);
- Summary: Adds a routine to the list of those that claim a vectorxos_write_env
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_write_env (char *command,
- <os_date_and_time> *start);
- Summary: Sets the program environment command string and start timeos_write_env
- Defined in: <os=>os.$>.h
- Declaration: extern void os_write_env (char *command,
- <os_date_and_time> *start);
- Summary: Sets the program environment command string and start timexos_read_args
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_args (char *keywords,
- char *input,
- char *buffer,
- int size,
- int *spare);
- Summary: Given a keyword definition, scans a command stringos_read_args
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_args (char *keywords,
- char *input,
- char *buffer,
- int size,
- int *spare);
- Summary: Given a keyword definition, scans a command stringxos_read_ram_fs_limits
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_ram_fs_limits (byte **start,
- char **end);
- Summary: Gets the current limits of the RM filing systemos_read_ram_fs_limits
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_ram_fs_limits (byte **start,
- char **end);
- Summary: Gets the current limits of the RM filing systemxos_claim_device_vector
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_claim_device_vector (int device,
- void *driver,
- byte *handle,
- int *status,
- bits mask);
- Summary: Claims a device vectoros_claim_device_vector
- Defined in: <os=>os.$>.h
- Declaration: extern void os_claim_device_vector (int device,
- void *driver,
- byte *handle,
- int *status,
- bits mask);
- Summary: Claims a device vectorxos_release_device_vector
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_release_device_vector (int device,
- void *driver,
- byte *handle,
- int *status,
- bits mask);
- Summary: Releases a device vectoros_release_device_vector
- Defined in: <os=>os.$>.h
- Declaration: extern void os_release_device_vector (int device,
- void *driver,
- byte *handle,
- int *status,
- bits mask);
- Summary: Releases a device vectorxos_delink_application
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_delink_application (byte *buffer,
- int size,
- int *used);
- Summary: Removes any vectors that an application is usingos_delink_application
- Defined in: <os=>os.$>.h
- Declaration: extern void os_delink_application (byte *buffer,
- int size,
- int *used);
- Summary: Removes any vectors that an application is usingxos_relink_application
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_relink_application (byte *buffer);
- Summary: Restores from a buffer any vectors that an application is usingos_relink_application
- Defined in: <os=>os.$>.h
- Declaration: extern void os_relink_application (byte *buffer);
- Summary: Restores from a buffer any vectors that an application is usingxos_heap_sort
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_heap_sort (int count,
- int *array,
- void *compare_fn,
- byte *handle,
- byte *objects,
- int object_size,
- void *workspace);
- Summary: Heap-sorts a list of objectsos_heap_sort
- Defined in: <os=>os.$>.h
- Declaration: extern void os_heap_sort (int count,
- int *array,
- void *compare_fn,
- byte *handle,
- byte *objects,
- int object_size,
- void *workspace);
- Summary: Heap-sorts a list of objectsxos_exit_and_die
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_exit_and_die (<os_error> *error,
- int rc,
- char *module_name);
- Summary: Kills a module and passes control to the most recent exit handleros_exit_and_die
- Defined in: <os=>os.$>.h
- Declaration: extern void os_exit_and_die (<os_error> *error,
- int rc,
- char *module_name);
- Summary: Kills a module and passes control to the most recent exit handlerxos_read_mem_map_info
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_mem_map_info (int *page_size,
- int *page_count);
- Summary: Reads the page size and countos_read_mem_map_info
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_mem_map_info (int *page_size,
- int *page_count);
- Summary: Reads the page size and countxos_read_mem_map_entries
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_mem_map_entries (<os_mem_map_request_list> *request_list);
- Summary: Reads by page number the logical to physical memory mapping used by MEMCos_read_mem_map_entries
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_mem_map_entries (<os_mem_map_request_list> *request_list);
- Summary: Reads by page number the logical to physical memory mapping used by MEMCxos_set_mem_map_entries
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_mem_map_entries (<os_mem_map_request_list> *request_list);
- Summary: Writes the logical to physical memory mapping used by MEMCos_set_mem_map_entries
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_mem_map_entries (<os_mem_map_request_list> *request_list);
- Summary: Writes the logical to physical memory mapping used by MEMCxos_add_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_add_call_back (void *call_back,
- byte *handle);
- Summary: Adds a transient callback to the listos_add_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern void os_add_call_back (void *call_back,
- byte *handle);
- Summary: Adds a transient callback to the listxos_read_default_handler
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_default_handler (int handler_type,
- void **handler,
- byte **handle,
- byte **buffer);
- Summary: Gets the address of the default handleros_read_default_handler
- Defined in: <os=>os.$>.h
- Declaration: extern void os_read_default_handler (int handler_type,
- void **handler,
- byte **handle,
- byte **buffer);
- Summary: Gets the address of the default handlerxos_set_ecf_origin
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_ecf_origin (int x,
- int y);
- Summary: Sets the origin of the ECF patternsos_set_ecf_origin
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_ecf_origin (int x,
- int y);
- Summary: Sets the origin of the ECF patternsxos_confirm
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_confirm (char *key,
- bits *psr);
- Summary: Gets a yes or no answeros_confirm
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_confirm (char *key);
- Summary: Gets a yes or no answerxos_changed_box
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_changed_box (int state,
- int *old_state,
- <os_change_box> **change_box);
- Summary: Determines which area of the screen has changedos_changed_box
- Defined in: <os=>os.$>.h
- Declaration: extern int os_changed_box (int state,
- <os_change_box> **change_box);
- Summary: Determines which area of the screen has changedxos_crc
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_crc (int crc_in,
- byte *block,
- char *end,
- int stride,
- int *crc);
- Summary: Calculates the cyclic redundancy check for a block of dataos_crc
- Defined in: <os=>os.$>.h
- Declaration: extern int os_crc (int crc_in,
- byte *block,
- char *end,
- int stride);
- Summary: Calculates the cyclic redundancy check for a block of dataxos_read_dynamic_area
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_dynamic_area (int area,
- byte **area_start,
- int *size,
- int *size_limit);
- Summary: Reads the space allocation of a dynamic areaos_read_dynamic_area
- Defined in: <os=>os.$>.h
- Declaration: extern byte *os_read_dynamic_area (int area,
- int *size,
- int *size_limit);
- Summary: Reads the space allocation of a dynamic areaxos_print_char
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_print_char (char c);
- Summary: Sends a character to the printer streamos_print_char
- Defined in: <os=>os.$>.h
- Declaration: extern void os_print_char (char c);
- Summary: Sends a character to the printer streamxos_change_redirection
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_change_redirection (<os_f> input,
- <os_f> output,
- <os_f> *old_input,
- <os_f> *old_output);
- Summary: Reads or writes OS_CLI input/output redirection handlesos_change_redirection
- Defined in: <os=>os.$>.h
- Declaration: extern void os_change_redirection (<os_f> input,
- <os_f> output,
- <os_f> *old_input,
- <os_f> *old_output);
- Summary: Reads or writes OS_CLI input/output redirection handlesxos_remove_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_remove_call_back (void *call_back,
- byte *handle);
- Summary: Removes a transient callback from the listos_remove_call_back
- Defined in: <os=>os.$>.h
- Declaration: extern void os_remove_call_back (void *call_back,
- byte *handle);
- Summary: Removes a transient callback from the listxos_find_mem_map_entries
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_find_mem_map_entries (<os_mem_map_request_list> *request_list);
- Summary: Reads by logical address the logical to physical memory mapping used by MEMCos_find_mem_map_entries
- Defined in: <os=>os.$>.h
- Declaration: extern void os_find_mem_map_entries (<os_mem_map_request_list> *request_list);
- Summary: Reads by logical address the logical to physical memory mapping used by MEMCxos_set_colour
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_colour (bits flags,
- <os_colour_number> colour_number);
- Summary: Sets the current colour or colour patternos_set_colour
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_colour (bits flags,
- <os_colour_number> colour_number);
- Summary: Sets the current colour or colour patternxos_read_colour
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_read_colour (bits flags,
- <os_ecf> *pattern,
- bits *flags_out,
- <os_colour_number> *colour_number);
- Summary: Reads the current colour or colour patternos_read_colour
- Defined in: <os=>os.$>.h
- Declaration: extern <os_colour_number> os_read_colour (bits flags,
- <os_ecf> *pattern,
- bits *flags_out);
- Summary: Reads the current colour or colour patternxos_pointer
- Gets or sets the currently selected pointer device typeos_pointer
- Gets or sets the currently selected pointer device typexospointer_get
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xospointer_get (int *pointer_type);
- Summary: Gets the currently selected pointer device typeospointer_get
- Defined in: <os=>os.$>.h
- Declaration: extern int ospointer_get (void);
- Summary: Gets the currently selected pointer device typexospointer_set
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xospointer_set (int pointer_type);
- Summary: Sets the currently selected pointer device typeospointer_set
- Defined in: <os=>os.$>.h
- Declaration: extern void ospointer_set (int pointer_type);
- Summary: Sets the currently selected pointer device typexpointerv
- Used to communicate between the kernel and a pointer device driverpointerv
- Used to communicate between the kernel and a pointer device driverxpointerv_status
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpointerv_status (int pointer_type,
- int *xmove,
- int *ymove);
- Summary: Requests status of pointer devicepointerv_status
- Defined in: <os=>os.$>.h
- Declaration: extern void pointerv_status (int pointer_type,
- int *xmove,
- int *ymove);
- Summary: Requests status of pointer devicexpointerv_enumerate
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpointerv_enumerate (<pointerv_record=>pointerv.pointerv_record> *record,
- <pointerv_record=>pointerv.pointerv_record> **record_out);
- Summary: Enumerates pointer device typespointerv_enumerate
- Defined in: <os=>os.$>.h
- Declaration: extern <pointerv_record=>pointerv.pointerv_record> *pointerv_enumerate (<pointerv_record=>pointerv.pointerv_record> *record);
- Summary: Enumerates pointer device typesxpointerv_selected
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xpointerv_selected (int pointer_type);
- Summary: Pointer device type selectedpointerv_selected
- Defined in: <os=>os.$>.h
- Declaration: extern void pointerv_selected (int pointer_type);
- Summary: Pointer device type selectedxos_screen_mode
- Performs miscellaneous operations for screen mode handlingos_screen_mode
- Performs miscellaneous operations for screen mode handlingxosscreenmode_select
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosscreenmode_select (<os_mode> mode);
- Summary: Selects a screen modeosscreenmode_select
- Defined in: <os=>os.$>.h
- Declaration: extern void osscreenmode_select (<os_mode> mode);
- Summary: Selects a screen modexosscreenmode_current
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosscreenmode_current (<os_mode> *mode);
- Summary: Returns the mode specifier for the current modeosscreenmode_current
- Defined in: <os=>os.$>.h
- Declaration: extern <os_mode> osscreenmode_current (void);
- Summary: Returns the mode specifier for the current modexosscreenmode_enumerate
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosscreenmode_enumerate (int context,
- <os_mode_block> *block,
- int block_size,
- bool *complete,
- int *context_out,
- byte **end,
- int *free);
- Summary: Enumerates the available screen modesosscreenmode_enumerate
- Defined in: <os=>os.$>.h
- Declaration: extern bool osscreenmode_enumerate (int context,
- <os_mode_block> *block,
- int block_size,
- int *context_out,
- byte **end,
- int *free);
- Summary: Enumerates the available screen modesxos_dynamic_area
- Performs operations on dynamic areasos_dynamic_area
- Performs operations on dynamic areasxosdynamicarea_create
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosdynamicarea_create (int area,
- int size,
- byte *base_address,
- bits flags,
- int size_limit,
- void *handler,
- void *workspace,
- char *description,
- int *area_out,
- byte **base_address_out,
- int *size_limit_out);
- Summary: Creates a new dynamic areaosdynamicarea_create
- Defined in: <os=>os.$>.h
- Declaration: extern int osdynamicarea_create (int area,
- int size,
- byte *base_address,
- bits flags,
- int size_limit,
- void *handler,
- void *workspace,
- char *description,
- byte **base_address_out,
- int *size_limit_out);
- Summary: Creates a new dynamic areaxosdynamicarea_delete
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosdynamicarea_delete (int area);
- Summary: Removes a previously created dynamic areaosdynamicarea_delete
- Defined in: <os=>os.$>.h
- Declaration: extern void osdynamicarea_delete (int area);
- Summary: Removes a previously created dynamic areaxosdynamicarea_read
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosdynamicarea_read (int area,
- int *size,
- byte **base_address,
- bits *flags,
- int *size_limit,
- void **handler,
- void **workspace,
- char **description);
- Summary: Returns information on a dynamic areaosdynamicarea_read
- Defined in: <os=>os.$>.h
- Declaration: extern void osdynamicarea_read (int area,
- int *size,
- byte **base_address,
- bits *flags,
- int *size_limit,
- void **handler,
- void **workspace,
- char **description);
- Summary: Returns information on a dynamic areaxosdynamicarea_enumerate
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosdynamicarea_enumerate (int context,
- int *context_out);
- Summary: Enumerates dynamic areasosdynamicarea_enumerate
- Defined in: <os=>os.$>.h
- Declaration: extern int osdynamicarea_enumerate (int context);
- Summary: Enumerates dynamic areasxosdynamicarea_renumber
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosdynamicarea_renumber (int old_area,
- int new_area);
- Summary: Renumbers dynamic areasosdynamicarea_renumber
- Defined in: <os=>os.$>.h
- Declaration: extern void osdynamicarea_renumber (int old_area,
- int new_area);
- Summary: Renumbers dynamic areasxos_memory
- Performs miscellaneous operations for memory managementos_memory
- Performs miscellaneous operations for memory managementxosmemory_page_op
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosmemory_page_op (bits flags,
- <os_page_block> *page_block,
- int page_count);
- Summary: General page block operationsosmemory_page_op
- Defined in: <os=>os.$>.h
- Declaration: extern void osmemory_page_op (bits flags,
- <os_page_block> *page_block,
- int page_count);
- Summary: General page block operationsxosmemory_read_arrangement_table_size
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosmemory_read_arrangement_table_size (int *table_size,
- int *page_size);
- Summary: Reads the size of the physical memory arrangement tableosmemory_read_arrangement_table_size
- Defined in: <os=>os.$>.h
- Declaration: extern int osmemory_read_arrangement_table_size (int *page_size);
- Summary: Reads the size of the physical memory arrangement tablexosmemory_read_arrangement_table
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosmemory_read_arrangement_table (byte *arrangement_table);
- Summary: Read the physical memory arrangement tableosmemory_read_arrangement_table
- Defined in: <os=>os.$>.h
- Declaration: extern void osmemory_read_arrangement_table (byte *arrangement_table);
- Summary: Read the physical memory arrangement tablexosmemory_read_size
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosmemory_read_size (bits type,
- int *page_count,
- int *page_size);
- Summary: Reads the amount of a specified type of memory available on the computerosmemory_read_size
- Defined in: <os=>os.$>.h
- Declaration: extern int osmemory_read_size (bits type,
- int *page_size);
- Summary: Reads the amount of a specified type of memory available on the computerxosmemory_read_controller
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosmemory_read_controller (bits controller,
- void **controller_addr);
- Summary: Reads controller presence and base addressosmemory_read_controller
- Defined in: <os=>os.$>.h
- Declaration: extern void osmemory_read_controller (bits controller,
- void **controller_addr);
- Summary: Reads controller presence and base addressxos_claim_processor_vector
- Provides a means for a module to attach itself to one of the processor's vectorsos_claim_processor_vector
- Provides a means for a module to attach itself to one of the processor's vectorsxosclaimprocessorvector_alloc
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosclaimprocessorvector_alloc (bits vector,
- void *routine,
- void **old_routine);
- Summary: Claims a processor vectorosclaimprocessorvector_alloc
- Defined in: <os=>os.$>.h
- Declaration: extern void *osclaimprocessorvector_alloc (bits vector,
- void *routine);
- Summary: Claims a processor vectorxosclaimprocessorvector_free
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xosclaimprocessorvector_free (bits vector,
- void *old_routine);
- Summary: Releases a processor vectorosclaimprocessorvector_free
- Defined in: <os=>os.$>.h
- Declaration: extern void osclaimprocessorvector_free (bits vector,
- void *old_routine);
- Summary: Releases a processor vectorxos_reset
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_reset (void);
- Summary: Performs a hard resetos_reset
- Defined in: <os=>os.$>.h
- Declaration: extern void os_reset (void);
- Summary: Performs a hard resetxos_mmu_control
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_mmu_control (bits eor_mask,
- bits and_mask,
- bits *old_value);
- Summary: Modifies the ARM MMU (prefer Cache_Control)os_mmu_control
- Defined in: <os=>os.$>.h
- Declaration: extern bits os_mmu_control (bits eor_mask,
- bits and_mask);
- Summary: Modifies the ARM MMU (prefer Cache_Control)xos_convert_standard_date_and_time
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_standard_date_and_time (<os_date_and_time> *date_and_time,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 5-byte time into a string (prefer Territory_ConvertStandardDateAndTime)os_convert_standard_date_and_time
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_standard_date_and_time (<os_date_and_time> *date_and_time,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 5-byte time into a string (prefer Territory_ConvertStandardDateAndTime)xos_convert_date_and_time
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_date_and_time (<os_date_and_time> *date_and_time,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 5-byte time into a string using a supplied format string (prefer Territory_ConvertDateAndTime)os_convert_date_and_time
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_date_and_time (<os_date_and_time> *date_and_time,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 5-byte time into a string using a supplied format string (prefer Territory_ConvertDateAndTime)xos_convert_hex1
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_hex1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 1-digit hexadecimal stringos_convert_hex1
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_hex1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 1-digit hexadecimal stringxos_convert_hex2
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_hex2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 2-digit hexadecimal stringos_convert_hex2
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_hex2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 2-digit hexadecimal stringxos_convert_hex4
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_hex4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 4-digit hexadecimal stringos_convert_hex4
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_hex4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 4-digit hexadecimal stringxos_convert_hex6
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_hex6 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 6-digit hexadecimal stringos_convert_hex6
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_hex6 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into a 6-digit hexadecimal stringxos_convert_hex8
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_hex8 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into an 8-digit hexadecimal stringos_convert_hex8
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_hex8 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a number into an 8-digit hexadecimal stringxos_convert_cardinal1
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_cardinal1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into an unsigned decimal stringos_convert_cardinal1
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_cardinal1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into an unsigned decimal stringxos_convert_cardinal2
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_cardinal2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into an unsigned decimal stringos_convert_cardinal2
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_cardinal2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into an unsigned decimal stringxos_convert_cardinal3
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_cardinal3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into an unsigned decimal stringos_convert_cardinal3
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_cardinal3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into an unsigned decimal stringxos_convert_cardinal4
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_cardinal4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into an unsigned decimal stringos_convert_cardinal4
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_cardinal4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into an unsigned decimal stringxos_convert_integer1
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_integer1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into a signed decimal stringos_convert_integer1
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_integer1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into a signed decimal stringxos_convert_integer2
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_integer2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into a signed decimal stringos_convert_integer2
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_integer2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into a signed decimal stringxos_convert_integer3
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_integer3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into a signed decimal stringos_convert_integer3
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_integer3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into a signed decimal stringxos_convert_integer4
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_integer4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into a signed decimal stringos_convert_integer4
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_integer4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into a signed decimal stringxos_convert_binary1
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_binary1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into an unsigned binary stringos_convert_binary1
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_binary1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into an unsigned binary stringxos_convert_binary2
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_binary2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into an unsigned binary stringos_convert_binary2
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_binary2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into an unsigned binary stringxos_convert_binary3
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_binary3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into an unsigned binary stringos_convert_binary3
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_binary3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into an unsigned binary stringxos_convert_binary4
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_binary4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into an unsigned binary stringos_convert_binary4
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_binary4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into an unsigned binary stringxos_convert_spaced_cardinal1
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_cardinal1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into a spaced unsigned decimal stringos_convert_spaced_cardinal1
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_cardinal1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into a spaced unsigned decimal stringxos_convert_spaced_cardinal2
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_cardinal2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into a spaced unsigned decimal stringos_convert_spaced_cardinal2
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_cardinal2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into a spaced unsigned decimal stringxos_convert_spaced_cardinal3
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_cardinal3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into a spaced unsigned decimal stringos_convert_spaced_cardinal3
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_cardinal3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into a spaced unsigned decimal stringxos_convert_spaced_cardinal4
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_cardinal4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into a spaced unsigned decimal stringos_convert_spaced_cardinal4
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_cardinal4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into a spaced unsigned decimal stringxos_convert_spaced_integer1
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_integer1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into a spaced signed decimal stringos_convert_spaced_integer1
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_integer1 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 1-byte number into a spaced signed decimal stringxos_convert_spaced_integer2
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_integer2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into a spaced signed decimal stringos_convert_spaced_integer2
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_integer2 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 2-byte number into a spaced signed decimal stringxos_convert_spaced_integer3
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_integer3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into a spaced signed decimal stringos_convert_spaced_integer3
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_integer3 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 3-byte number into a spaced signed decimal stringxos_convert_spaced_integer4
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_spaced_integer4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into a spaced signed decimal stringos_convert_spaced_integer4
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_spaced_integer4 (int value,
- char *buffer,
- int size,
- char **end);
- Summary: Converts a 4-byte number into a spaced signed decimal stringxos_convert_fixed_net_station
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_fixed_net_station (<os_station_number> *station_number,
- char *buffer,
- int size,
- char **end);
- Summary: Converts from an Econet station/network number pair to a string of fixed lengthos_convert_fixed_net_station
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_fixed_net_station (<os_station_number> *station_number,
- char *buffer,
- int size,
- char **end);
- Summary: Converts from an Econet station/network number pair to a string of fixed lengthxos_convert_net_station
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_net_station (<os_station_number> *station_number,
- char *buffer,
- int size,
- char **end);
- Summary: Converts from an Econet station/network number pair to a stringos_convert_net_station
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_net_station (<os_station_number> *station_number,
- char *buffer,
- int size,
- char **end);
- Summary: Converts from an Econet station/network number pair to a stringxos_convert_fixed_file_size
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_fixed_file_size (int file_size,
- char *buffer,
- int size,
- char **end);
- Summary: Converts an integer into a filesize string of fixed lengthos_convert_fixed_file_size
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_fixed_file_size (int file_size,
- char *buffer,
- int size,
- char **end);
- Summary: Converts an integer into a filesize string of fixed lengthxos_convert_file_size
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_convert_file_size (int file_size,
- char *buffer,
- int size,
- char **end);
- Summary: Converts an integer into a filesize stringos_convert_file_size
- Defined in: <os=>os.$>.h
- Declaration: extern void os_convert_file_size (int file_size,
- char *buffer,
- int size,
- char **end);
- Summary: Converts an integer into a filesize stringxos_writei
- Writes an immediate byte (cannot be called via APCS)os_writei
- Writes an immediate byte (cannot be called via APCS)xos_null
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_null (void);
- Summary: VDU command for nul (no operation)os_null
- Defined in: <os=>os.$>.h
- Declaration: extern void os_null (void);
- Summary: VDU command for nul (no operation)xos_char_to_printer
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_char_to_printer (void);
- Summary: VDU command to send the next character to the printer only - must be followed by 'char'os_char_to_printer
- Defined in: <os=>os.$>.h
- Declaration: extern void os_char_to_printer (void);
- Summary: VDU command to send the next character to the printer only - must be followed by 'char'xos_printer_on
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_printer_on (void);
- Summary: VDU command to enable the printer streamos_printer_on
- Defined in: <os=>os.$>.h
- Declaration: extern void os_printer_on (void);
- Summary: VDU command to enable the printer streamxos_printer_off
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_printer_off (void);
- Summary: VDU command to disable the printer streamos_printer_off
- Defined in: <os=>os.$>.h
- Declaration: extern void os_printer_off (void);
- Summary: VDU command to disable the printer streamxos_split_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_split_cursors (void);
- Summary: VDU command to split the text and graphics cursorsos_split_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern void os_split_cursors (void);
- Summary: VDU command to split the text and graphics cursorsxos_join_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_join_cursors (void);
- Summary: VDU command to join the text and graphics cursorsos_join_cursors
- Defined in: <os=>os.$>.h
- Declaration: extern void os_join_cursors (void);
- Summary: VDU command to join the text and graphics cursorsxos_vdu_on
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_vdu_on (void);
- Summary: VDU command to enable screen outputos_vdu_on
- Defined in: <os=>os.$>.h
- Declaration: extern void os_vdu_on (void);
- Summary: VDU command to enable screen outputxos_bell
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_bell (void);
- Summary: VDU command to ring the bellos_bell
- Defined in: <os=>os.$>.h
- Declaration: extern void os_bell (void);
- Summary: VDU command to ring the bellxos_backspace
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_backspace (void);
- Summary: VDU command to perform a backspaceos_backspace
- Defined in: <os=>os.$>.h
- Declaration: extern void os_backspace (void);
- Summary: VDU command to perform a backspacexos_tab
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_tab (void);
- Summary: VDU command to perform a horizontal tabos_tab
- Defined in: <os=>os.$>.h
- Declaration: extern void os_tab (void);
- Summary: VDU command to perform a horizontal tabxos_line_feed
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_line_feed (void);
- Summary: VDU command to perform a linefeedos_line_feed
- Defined in: <os=>os.$>.h
- Declaration: extern void os_line_feed (void);
- Summary: VDU command to perform a linefeedxos_vertical_tab
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_vertical_tab (void);
- Summary: VDU command to perform a vertical tabos_vertical_tab
- Defined in: <os=>os.$>.h
- Declaration: extern void os_vertical_tab (void);
- Summary: VDU command to perform a vertical tabxos_cls
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_cls (void);
- Summary: VDU command to clear the text windowos_cls
- Defined in: <os=>os.$>.h
- Declaration: extern void os_cls (void);
- Summary: VDU command to clear the text windowxos_return
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_return (void);
- Summary: VDU command to perform a returnos_return
- Defined in: <os=>os.$>.h
- Declaration: extern void os_return (void);
- Summary: VDU command to perform a returnxos_page_mode_on
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_page_mode_on (void);
- Summary: VDU command to turn paged mode onos_page_mode_on
- Defined in: <os=>os.$>.h
- Declaration: extern void os_page_mode_on (void);
- Summary: VDU command to turn paged mode onxos_page_mode_off
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_page_mode_off (void);
- Summary: VDU command to turn paged mode offos_page_mode_off
- Defined in: <os=>os.$>.h
- Declaration: extern void os_page_mode_off (void);
- Summary: VDU command to turn paged mode offxos_clg
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_clg (void);
- Summary: VDU command to clear the graphics windowos_clg
- Defined in: <os=>os.$>.h
- Declaration: extern void os_clg (void);
- Summary: VDU command to clear the graphics windowxos_set_text_colour
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_text_colour (void);
- Summary: VDU command to set the text colour - must be followed by 'colour'os_set_text_colour
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_text_colour (void);
- Summary: VDU command to set the text colour - must be followed by 'colour'xos_set_gcol
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_gcol (void);
- Summary: VDU command to set the graphics colour and action - must be followed by 'action,' 'colour'os_set_gcol
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_gcol (void);
- Summary: VDU command to set the graphics colour and action - must be followed by 'action,' 'colour'xos_set_palette
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_palette (void);
- Summary: VDU command to set the palette - must be followed by 'colour,' 'mode,' 'red,' 'green,' 'blue'os_set_palette
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_palette (void);
- Summary: VDU command to set the palette - must be followed by 'colour,' 'mode,' 'red,' 'green,' 'blue'xos_reset_colours
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_reset_colours (void);
- Summary: VDU command to restore default coloursos_reset_colours
- Defined in: <os=>os.$>.h
- Declaration: extern void os_reset_colours (void);
- Summary: VDU command to restore default coloursxos_vdu_off
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_vdu_off (void);
- Summary: VDU command to disable screen outputos_vdu_off
- Defined in: <os=>os.$>.h
- Declaration: extern void os_vdu_off (void);
- Summary: VDU command to disable screen outputxos_set_mode
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_mode (void);
- Summary: VDU command to change display mode - must be followed by 'mode'os_set_mode
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_mode (void);
- Summary: VDU command to change display mode - must be followed by 'mode'xos_misc
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_misc (void);
- Summary: Miscellaneous VDU commands - must be followed by 'command' and 8 more arguments)os_misc
- Defined in: <os=>os.$>.h
- Declaration: extern void os_misc (void);
- Summary: Miscellaneous VDU commands - must be followed by 'command' and 8 more arguments)xos_set_graphics_window
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_graphics_window (void);
- Summary: VDU command to define the graphics window - must be followed by 'x0,' 'y0,' 'x1,' 'y1' (2 bytes each)os_set_graphics_window
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_graphics_window (void);
- Summary: VDU command to define the graphics window - must be followed by 'x0,' 'y0,' 'x1,' 'y1' (2 bytes each)xos_plot_vdu
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_plot_vdu (void);
- Summary: General VDU plot commands - must be followed by 'plot_type' and 'x,' 'y' (2 bytes each) (prefer OS_Plot)os_plot_vdu
- Defined in: <os=>os.$>.h
- Declaration: extern void os_plot_vdu (void);
- Summary: General VDU plot commands - must be followed by 'plot_type' and 'x,' 'y' (2 bytes each) (prefer OS_Plot)xos_reset_windows
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_reset_windows (void);
- Summary: VDU command to restore default windowsos_reset_windows
- Defined in: <os=>os.$>.h
- Declaration: extern void os_reset_windows (void);
- Summary: VDU command to restore default windowsxos_escape
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_escape (void);
- Summary: VDU command for escape (no operation)os_escape
- Defined in: <os=>os.$>.h
- Declaration: extern void os_escape (void);
- Summary: VDU command for escape (no operation)xos_set_text_window
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_text_window (void);
- Summary: VDU command to define the text window - must be followed by 'x0,' 'y0,' 'x1,' 'y1'os_set_text_window
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_text_window (void);
- Summary: VDU command to define the text window - must be followed by 'x0,' 'y0,' 'x1,' 'y1'xos_set_graphics_origin
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_graphics_origin (void);
- Summary: VDU command to set the graphics origin - must be followed by 'x,' 'y' (2 bytes each)os_set_graphics_origin
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_graphics_origin (void);
- Summary: VDU command to set the graphics origin - must be followed by 'x,' 'y' (2 bytes each)xos_home_text_cursor
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_home_text_cursor (void);
- Summary: VDU command to home the text cursoros_home_text_cursor
- Defined in: <os=>os.$>.h
- Declaration: extern void os_home_text_cursor (void);
- Summary: VDU command to home the text cursorxos_set_text_cursor
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_set_text_cursor (void);
- Summary: VDU command to position the text cursor - must be followed by 'x,' 'y'os_set_text_cursor
- Defined in: <os=>os.$>.h
- Declaration: extern void os_set_text_cursor (void);
- Summary: VDU command to position the text cursor - must be followed by 'x,' 'y'xos_space
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_space (void);
- Summary: VDU command to perform a spaceos_space
- Defined in: <os=>os.$>.h
- Declaration: extern void os_space (void);
- Summary: VDU command to perform a spacexos_delete
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xos_delete (void);
- Summary: VDU command to perform a deleteos_delete
- Defined in: <os=>os.$>.h
- Declaration: extern void os_delete (void);
- Summary: VDU command to perform a deletexuserv
- User vectoruserv
- User vectorxukvdu23v
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xukvdu23v (int n,
- byte *queue);
- Summary: Called when an unrecognised VDU 23 command is issuedukvdu23v
- Defined in: <os=>os.$>.h
- Declaration: extern void ukvdu23v (int n,
- byte *queue);
- Summary: Called when an unrecognised VDU 23 command is issuedxvduxv
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xvduxv (byte b);
- Summary: Called when VDU output has been redirectedvduxv
- Defined in: <os=>os.$>.h
- Declaration: extern void vduxv (byte b);
- Summary: Called when VDU output has been redirectedxservice_release_fiq
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_release_fiq (void);
- Summary: FIQ releasedservice_release_fiq
- Defined in: <os=>os.$>.h
- Declaration: extern void service_release_fiq (void);
- Summary: FIQ releasedxservice_claim_fiq
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_claim_fiq (void);
- Summary: FIQ claimedservice_claim_fiq
- Defined in: <os=>os.$>.h
- Declaration: extern void service_claim_fiq (void);
- Summary: FIQ claimedxservice_reset
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_reset (void);
- Summary: Post-reset. Also, request to task modules and filing system-specific desktop filers to set task_handle variable to 0service_reset
- Defined in: <os=>os.$>.h
- Declaration: extern void service_reset (void);
- Summary: Post-reset. Also, request to task modules and filing system-specific desktop filers to set task_handle variable to 0xservice_key_handler
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_key_handler (int keyboard_id);
- Summary: Keyboard handler changedservice_key_handler
- Defined in: <os=>os.$>.h
- Declaration: extern void service_key_handler (int keyboard_id);
- Summary: Keyboard handler changedxservice_mode_change
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_mode_change (void);
- Summary: Mode changedservice_mode_change
- Defined in: <os=>os.$>.h
- Declaration: extern void service_mode_change (void);
- Summary: Mode changedxservice_claim_fiq_in_background
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_claim_fiq_in_background (void);
- Summary: FIQ claimed in backgroundservice_claim_fiq_in_background
- Defined in: <os=>os.$>.h
- Declaration: extern void service_claim_fiq_in_background (void);
- Summary: FIQ claimed in backgroundxservice_memory_moved
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_memory_moved (void);
- Summary: Memory movedservice_memory_moved
- Defined in: <os=>os.$>.h
- Declaration: extern void service_memory_moved (void);
- Summary: Memory movedxservice_pre_mode_change
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_pre_mode_change (<os_mode> mode);
- Summary: Mode changeservice_pre_mode_change
- Defined in: <os=>os.$>.h
- Declaration: extern void service_pre_mode_change (<os_mode> mode);
- Summary: Mode changexservice_mode_extension
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_mode_extension (<os_mode> mode,
- int monitor_type,
- int bandwidth,
- int vram_size,
- bool *unclaimed,
- int **vidc_list,
- int **workspace_list);
- Summary: Allow soft modesservice_mode_extension
- Defined in: <os=>os.$>.h
- Declaration: extern bool service_mode_extension (<os_mode> mode,
- int monitor_type,
- int bandwidth,
- int vram_size,
- int **vidc_list,
- int **workspace_list);
- Summary: Allow soft modesxservice_mode_translation
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_mode_translation (<os_mode> mode,
- int monitor_type);
- Summary: Translate modes for unknown monitor typesservice_mode_translation
- Defined in: <os=>os.$>.h
- Declaration: extern void service_mode_translation (<os_mode> mode,
- int monitor_type);
- Summary: Translate modes for unknown monitor typesxservice_validate_address
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_validate_address (void);
- Summary: OS_ValidateAddress has been called with an unknown areaservice_validate_address
- Defined in: <os=>os.$>.h
- Declaration: extern void service_validate_address (void);
- Summary: OS_ValidateAddress has been called with an unknown areaxservice_monitor_lead_translation
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_monitor_lead_translation (int lead_id);
- Summary: Translate monitor lead IDservice_monitor_lead_translation
- Defined in: <os=>os.$>.h
- Declaration: extern void service_monitor_lead_translation (int lead_id);
- Summary: Translate monitor lead IDxservice_mode_changing
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_mode_changing (<os_mode> mode,
- int monitor_type);
- Summary: Mode changeservice_mode_changing
- Defined in: <os=>os.$>.h
- Declaration: extern void service_mode_changing (<os_mode> mode,
- int monitor_type);
- Summary: Mode changexservice_enumerate_screen_modes
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_enumerate_screen_modes (int context,
- int monitor_type,
- int bandwidth,
- int vram_size,
- <os_mode_block> *block,
- int block_size,
- bool *unclaimed,
- int *context_out,
- byte **end,
- int *free);
- Summary: Enumerates the available screen modesservice_enumerate_screen_modes
- Defined in: <os=>os.$>.h
- Declaration: extern bool service_enumerate_screen_modes (int context,
- int monitor_type,
- int bandwidth,
- int vram_size,
- <os_mode_block> *block,
- int block_size,
- int *context_out,
- byte **end,
- int *free);
- Summary: Enumerates the available screen modesxservice_pages_unsafe
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_pages_unsafe (<os_page_block> *page_block,
- int request_count);
- Summary: Pages specified are about to be swapped for different pagesservice_pages_unsafe
- Defined in: <os=>os.$>.h
- Declaration: extern void service_pages_unsafe (<os_page_block> *page_block,
- int request_count);
- Summary: Pages specified are about to be swapped for different pagesxservice_pages_safe
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_pages_safe (int request_count,
- <os_page_block> *old_page_block,
- <os_page_block> *new_page_block);
- Summary: Pages specified have been swapped for different pagesservice_pages_safe
- Defined in: <os=>os.$>.h
- Declaration: extern void service_pages_safe (int request_count,
- <os_page_block> *old_page_block,
- <os_page_block> *new_page_block);
- Summary: Pages specified have been swapped for different pagesxservice_dynamic_area_create
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_dynamic_area_create (int area);
- Summary: Dynamic area has just been successfully createdservice_dynamic_area_create
- Defined in: <os=>os.$>.h
- Declaration: extern void service_dynamic_area_create (int area);
- Summary: Dynamic area has just been successfully createdxservice_dynamic_area_remove
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_dynamic_area_remove (int area);
- Summary: Dynamic area is about to be removedservice_dynamic_area_remove
- Defined in: <os=>os.$>.h
- Declaration: extern void service_dynamic_area_remove (int area);
- Summary: Dynamic area is about to be removedxservice_dynamic_area_renumber
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xservice_dynamic_area_renumber (int area);
- Summary: Dynamic area is being renumberedservice_dynamic_area_renumber
- Defined in: <os=>os.$>.h
- Declaration: extern void service_dynamic_area_renumber (int area);
- Summary: Dynamic area is being renumberedxevent_char_input
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xevent_char_input (int buffer,
- byte b);
- Summary: Character inputevent_char_input
- Defined in: <os=>os.$>.h
- Declaration: extern void event_char_input (int buffer,
- byte b);
- Summary: Character inputxevent_vsync
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xevent_vsync (void);
- Summary: Vertical syncevent_vsync
- Defined in: <os=>os.$>.h
- Declaration: extern void event_vsync (void);
- Summary: Vertical syncxevent_interval_timer
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xevent_interval_timer (void);
- Summary: Interval timerevent_interval_timer
- Defined in: <os=>os.$>.h
- Declaration: extern void event_interval_timer (void);
- Summary: Interval timerxevent_escape
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xevent_escape (void);
- Summary: Escape event_escape
- Defined in: <os=>os.$>.h
- Declaration: extern void event_escape (void);
- Summary: Escape xevent_user
- User eventevent_user
- User eventxevent_mouse_transition
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xevent_mouse_transition (int x,
- int y,
- bits state,
- <os_t> t);
- Summary: Mouse button up/downevent_mouse_transition
- Defined in: <os=>os.$>.h
- Declaration: extern void event_mouse_transition (int x,
- int y,
- bits state,
- <os_t> t);
- Summary: Mouse button up/downxevent_key_transition
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xevent_key_transition (bool down,
- int key,
- int keyboard_id);
- Summary: Key up/downevent_key_transition
- Defined in: <os=>os.$>.h
- Declaration: extern void event_key_transition (bool down,
- int key,
- int keyboard_id);
- Summary: Key up/downxupcall_move_memory_request
- Defined in: <os=>os.$>.h
- Declaration: extern <os_error=>os.os_error> *xupcall_move_memory_request (int size_change,
- bool *not_moved);
- Summary: Informs your program that RISC OS would like to move memoryupcall_move_memory_request
- Defined in: <os=>os.$>.h
- Declaration: extern bool upcall_move_memory_request (int size_change);
- Summary: Informs your program that RISC OS would like to move memoryOS
- <os_t>
- <os_f>
- <os_mode>
- <os_gcol>
- <os_tint>
- <os_action>
- <os_colour>
- <os_colour_number>
- <os_colour_pair>
- <os_palette>
- <os_sprite_palette>
- <os_ecf>
- <os_correction_table>
- <os_bcd_date_and_time>
- <os_station_number>
- <os_box>
- <os_factors>
- <os_change_box>
- <os_error>
- <os_date_and_time>
- <os_coord>
- <os_trfm>
- <os_hom_trfm>
- <os_pgm>
- <os_register_block>
- <os_vdu_var_list>
- <os_key_handler>
- <os_gi>
- <os_gs>
- <os_mem_map_request>
- <os_mem_map_request_list>
- <os_page_block>
- <pointerv_record>
- <os_mode_block>
- <os_mode_selector>
- <os_ERROR_LIMIT>
- <os_FILE_NAME_LIMIT>
- <os_CLI_LIMIT>
- <os_RSHIFT>
- <os_GSHIFT>
- <os_BSHIFT>
- <os_R>
- <os_G>
- <os_B>
- <os_COLOUR_RANGE>
- <os_MODE1BPP90X45>
- <os_MODE2BPP90X45>
- <os_MODE4BPP90X45>
- <os_MODE8BPP90X45>
- <os_MODE2BPP45X45>
- <os_MODE4BPP45X45>
- <os_MODE8BPP45X45>
- <os_MODE1BPP90X90>
- <os_MODE2BPP90X90>
- <os_MODE4BPP90X90>
- <os_MODE8BPP90X90>
- <os_INCH>
- <os_VDU_NULL>
- <os_VDU_CHAR_TO_PRINTER>
- <os_VDU_PRINTER_ON>
- <os_VDU_PRINTER_OFF>
- <os_VDU_GRAPH_TEXT_OFF>
- <os_VDU_GRAPH_TEXT_ON>
- <os_VDU_SCREEN_ON>
- <os_VDU_BELL>
- <os_VDU_BACKSPACE>
- <os_VDU_TAB>
- <os_VDU_LINEFEED>
- <os_VDU_VERTICAL_TAB>
- <os_VDU_CLS>
- <os_VDU_RETURN>
- <os_VDU_PAGE_MODE_ON>
- <os_VDU_PAGE_MODE_OFF>
- <os_VDU_CLG>
- <os_VDU_SET_TEXT_COLOUR>
- <os_VDU_SET_GCOL>
- <os_VDU_SET_PALETTE>
- <os_VDU_RESET_COLOURS>
- <os_VDU_SCREEN_OFF>
- <os_VDU_MODE>
- <os_VDU_MISC>
- <os_VDU_SET_GRAPHICS_WINDOW>
- <os_VDU_PLOT>
- <os_VDU_RESET_WINDOWS>
- <os_VDU_ESCAPE>
- <os_VDU_SET_TEXT_WINDOW>
- <os_VDU_SET_GRAPHICS_ORIGIN>
- <os_VDU_HOME_TEXT_CURSOR>
- <os_VDU_SET_TEXT_CURSOR>
- <os_VDU_DELETE>
- <os_MISC_INTERLACE>
- <os_MISC_CURSOR>
- <os_MISC_SET_ECF1>
- <os_MISC_SET_ECF2>
- <os_MISC_SET_ECF3>
- <os_MISC_SET_ECF4>
- <os_MISC_SET_DOT_STYLE>
- <os_MISC_SCROLL>
- <os_MISC_CLEAR_REGION>
- <os_MISC_SET_ON>
- <os_MISC_SET_OFF>
- <os_MISC_SET_BBCECF>
- <os_MISC_SET_UNPACKED_ECF1>
- <os_MISC_SET_UNPACKED_ECF2>
- <os_MISC_SET_UNPACKED_ECF3>
- <os_MISC_SET_UNPACKED_ECF4>
- <os_MISC_SET_CURSOR_MOVEMENT>
- <os_MISC_MISC>
- <os_MISC_SET_TEXT_FG_TINT>
- <os_MISC_SET_TEXT_BG_TINT>
- <os_MISC_SET_GRAPHICS_FG_TINT>
- <os_MISC_SET_GRAPHICS_BG_TINT>
- <os_MISC_SET_ECF_INTERPRETATION>
- <os_MISC_INVERT_TEXT>
- <os_MISC_SET_ECF_ORIGIN>
- <os_MISC_SET_CHAR_SIZE>
- <os_ACTION_OVERWRITE>
- <os_ACTION_DISJOIN>
- <os_ACTION_CONJOIN>
- <os_ACTION_EXCLUSIVE_DISJOIN>
- <os_ACTION_INVERT>
- <os_ACTION_IDENTITY>
- <os_ACTION_CONJOIN_NEGATION>
- <os_ACTION_DISJOIN_NEGATION>
- <os_ACTION_USE_MASK>
- <os_ACTION_USE_ECF1>
- <os_ACTION_USE_ECF2>
- <os_ACTION_USE_ECF3>
- <os_ACTION_USE_ECF4>
- <os_ACTION_USE_GIANT_ECF>
- <os_ACTION_USE_SPRITE_PALETTE>
- <os_GCOL_SET_FG>
- <os_GCOL_SET_BG>
- <os_PLOT_SOLID>
- <os_PLOT_SOLID_EX_END>
- <os_PLOT_DOTTED>
- <os_PLOT_DOTTED_EX_END>
- <os_PLOT_SOLID_EX_START>
- <os_PLOT_SOLID_EX_BOTH>
- <os_PLOT_DOTTED_EX_START>
- <os_PLOT_DOTTED_EX_BOTH>
- <os_PLOT_POINT>
- <os_PLOT_HORIZONTAL_TO_NON_BG>
- <os_PLOT_TRIANGLE>
- <os_PLOT_RIGHT_TO_BG>
- <os_PLOT_RECTANGLE>
- <os_PLOT_HORIZONTAL_TO_FG>
- <os_PLOT_PARALLELOGRAM>
- <os_PLOT_RIGHT_TO_NON_FG>
- <os_PLOT_FLOOD_TO_NON_BG>
- <os_PLOT_FLOOD_TO_FG>
- <os_PLOT_CIRCLE_OUTLINE>
- <os_PLOT_CIRCLE>
- <os_PLOT_ARC>
- <os_PLOT_SEGMENT>
- <os_PLOT_SECTOR>
- <os_PLOT_BLOCK>
- <os_PLOT_ELLIPSE_OUTLINE>
- <os_PLOT_ELLIPSE>
- <os_MOVE_BY>
- <os_PLOT_BY>
- <os_PLOT_INVERSE_BY>
- <os_PLOT_BG_BY>
- <os_MOVE_TO>
- <os_PLOT_TO>
- <os_PLOT_INVERSE_TO>
- <os_PLOT_BG_TO>
- <os_VARTYPE_STRING>
- <os_VARTYPE_NUMBER>
- <os_VARTYPE_MACRO>
- <os_VARTYPE_EXPANDED>
- <os_VARTYPE_LITERAL_STRING>
- <os_VARTYPE_CODE>
- <os_MODEVAR_MODE_FLAGS>
- <os_MODEVAR_RSCREEN>
- <os_MODEVAR_BSCREEN>
- <os_MODEVAR_NCOLOUR>
- <os_MODEVAR_XEIG_FACTOR>
- <os_MODEVAR_YEIG_FACTOR>
- <os_MODEVAR_LINE_LENGTH>
- <os_MODEVAR_SCREEN_SIZE>
- <os_MODEVAR_YSHIFT_FACTOR>
- <os_MODEVAR_LOG2_BPP>
- <os_MODEVAR_LOG2_BPC>
- <os_MODEVAR_XWIND_LIMIT>
- <os_MODEVAR_YWIND_LIMIT>
- <os_VDUVAR_GWL_COL>
- <os_VDUVAR_GWB_ROW>
- <os_VDUVAR_GWR_COL>
- <os_VDUVAR_GWT_ROW>
- <os_VDUVAR_TWL_COL>
- <os_VDUVAR_TWB_ROW>
- <os_VDUVAR_TWR_COL>
- <os_VDUVAR_TWT_ROW>
- <os_VDUVAR_ORGX>
- <os_VDUVAR_ORGY>
- <os_VDUVAR_GCSX>
- <os_VDUVAR_GCSY>
- <os_VDUVAR_OLDER_CSX>
- <os_VDUVAR_OLDER_CSY>
- <os_VDUVAR_OLD_CSX>
- <os_VDUVAR_OLD_CSY>
- <os_VDUVAR_GCS_IX>
- <os_VDUVAR_GCS_IY>
- <os_VDUVAR_NEW_PTX>
- <os_VDUVAR_NEW_PTY>
- <os_VDUVAR_SCREEN_START>
- <os_VDUVAR_DISPLAY_START>
- <os_VDUVAR_TOTAL_SCREEN_SIZE>
- <os_VDUVAR_GPLFMD>
- <os_VDUVAR_GPLBMD>
- <os_VDUVAR_GFCOL>
- <os_VDUVAR_GBCOL>
- <os_VDUVAR_TFORE_COL>
- <os_VDUVAR_TBACK_COL>
- <os_VDUVAR_GF_TINT>
- <os_VDUVAR_GB_TINT>
- <os_VDUVAR_TF_TINT>
- <os_VDUVAR_TB_TINT>
- <os_VDUVAR_MAX_MODE>
- <os_VDUVAR_GCHAR_SIZEX>
- <os_VDUVAR_GCHAR_SIZEY>
- <os_VDUVAR_GCHAR_SPACEX>
- <os_VDUVAR_GCHAR_SPACEY>
- <os_VDUVAR_HLINE_ADDR>
- <os_VDUVAR_TCHAR_SIZEX>
- <os_VDUVAR_TCHAR_SIZEY>
- <os_VDUVAR_TCHAR_SPACEX>
- <os_VDUVAR_TCHAR_SPACEY>
- <os_VDUVAR_GCOL_ORA_EOR_ADDR>
- <os_VDUVAR_VIDC_CLOCK_SPEED>
- <os_VDUVAR_WINDOW_WIDTH>
- <os_VDUVAR_WINDOW_HEIGHT>
- <os_FOREGROUND>
- <os_BACKGROUND>
- <os_COLOUR_TRANSPARENT>
- <os_COLOUR_RED>
- <os_COLOUR_GREEN>
- <os_COLOUR_BLUE>
- <os_COLOUR_CYAN>
- <os_COLOUR_MAGENTA>
- <os_COLOUR_YELLOW>
- <os_COLOUR_WHITE>
- <os_COLOUR_VERY_LIGHT_GREY>
- <os_COLOUR_LIGHT_GREY>
- <os_COLOUR_MID_LIGHT_GREY>
- <os_COLOUR_MID_DARK_GREY>
- <os_COLOUR_DARK_GREY>
- <os_COLOUR_VERY_DARK_GREY>
- <os_COLOUR_BLACK>
- <os_COLOUR_DARK_BLUE>
- <os_COLOUR_LIGHT_YELLOW>
- <os_COLOUR_LIGHT_GREEN>
- <os_COLOUR_LIGHT_RED>
- <os_COLOUR_CREAM>
- <os_COLOUR_DARK_GREEN>
- <os_COLOUR_ORANGE>
- <os_COLOUR_LIGHT_BLUE>
- <os_DEVICE_PRINTER_BUSY>
- <os_DEVICE_SERIAL_RINGING>
- <os_DEVICE_PRINTER_ACKNOWLEDGE>
- <os_DEVICE_VSYNC>
- <os_DEVICE_POWER_ON>
- <os_DEVICE_IOC_TIMER0>
- <os_DEVICE_IOC_TIMER1>
- <os_DEVICE_FIQ_DOWNGRADE>
- <os_DEVICE_EXPANSION_FIQ_DOWNGRADE>
- <os_DEVICE_SOUND_BUFFER>
- <os_DEVICE_SERIAL_CONTROLLER>
- <os_DEVICE_HARD_DISC_CONTROLLER>
- <os_DEVICE_FLOPPY_DISC_CHANGED>
- <os_DEVICE_EXPANSION_CARD>
- <os_DEVICE_KEYBOARD_TX_EMPTY>
- <os_DEVICE_KEYBOARD_RX_FULL>
- <os_DEVICE_PRINTER>
- <os_DEVICE_BATTERY_WARNING>
- <os_DEVICE_FLOPPY_DISC_INDEX>
- <os_DEVICE_IDE_DISC>
- <os_ERROR_NUMBER_SHIFT>
- <os_ERROR_NUMBER>
- <os_ERROR_SOURCE_SHIFT>
- <os_ERROR_SOURCE>
- <os_ERROR_CATEGORY_SHIFT>
- <os_ERROR_CATEGORY>
- <os_CATEGORY_UNCLASSIFIED>
- <os_CATEGORY_INFORMATION>
- <os_CATEGORY_WARNING>
- <os_CATEGORY_SYSTEM>
- <os_GLOBAL_ESCAPE>
- <os_GLOBAL_FATAL>
- <os_GLOBAL_IS_AFIL>
- <os_GLOBAL_ISNT_FIL>
- <os_GLOBAL_IS_ADIR>
- <os_GLOBAL_ISNT_DIR>
- <os_GLOBAL_NO_FILE>
- <os_GLOBAL_NO_DIR>
- <os_GLOBAL_NO_ANY>
- <os_GLOBAL_TYPS_BAD>
- <os_GLOBAL_BAD_REN>
- <os_GLOBAL_BAD_ACC>
- <os_GLOBAL_OPN_FILS>
- <os_GLOBAL_BAD_NAME>
- <os_GLOBAL_LONG_NAM>
- <os_GLOBAL_CHANNEL>
- <os_GLOBAL_BAD_SWI>
- <os_GLOBAL_MOD_IN_US>
- <os_GLOBAL_STR_OFLO>
- <os_GLOBAL_NUM_OFLO>
- <os_GLOBAL_BUF_OFLO>
- <os_GLOBAL_BAD_STN>
- <os_GLOBAL_BAD_NET>
- <os_GLOBAL_FULL_NET>
- <os_GLOBAL_NO_ECO>
- <os_GLOBAL_BAD_READ>
- <os_GLOBAL_BAD_WRT>
- <os_GLOBAL_DATA_LST>
- <os_GLOBAL_BAD_FS_OP>
- <os_GLOBAL_FS_NO_RD>
- <os_GLOBAL_FS_NO_WRT>
- <os_GLOBAL_FS_IN_USE>
- <os_GLOBAL_BAD_ADDRESS>
- <os_GLOBAL_NO_STORE>
- <os_GLOBAL_RAM_LOADC>
- <os_GLOBAL_DDS0>
- <os_GLOBAL_DDS1>
- <os_GLOBAL_DDS2>
- <os_GLOBAL_DDS3>
- <os_GLOBAL_CSDS>
- <os_GLOBAL_LDS>
- <os_GLOBAL_URDS>
- <os_GLOBAL_DR>
- <os_GLOBAL_APP>
- <os_GLOBAL_EX_DT>
- <os_GLOBAL_EX_LD_EX>
- <os_GLOBAL_USE_DESK>
- <os_GLOBAL_APP_QUIT>
- <os_GLOBAL_NO_MEM>
- <os_GLOBAL_BAD_HARD>
- <os_GLOBAL_BAD_PARM>
- <os_GLOBAL_NO_WIMP>
- <error_ESCAPE>
- <error_BAD_MODE>
- <error_IS_ADIR>
- <error_TYPES_DONT_MATCH>
- <error_BAD_RENAME>
- <error_BAD_COPY>
- <error_OUTSIDE_FILE>
- <error_ACCESS_VIOLATION>
- <error_TOO_MANY_OPEN_FILES>
- <error_NOT_OPEN_FOR_UPDATE>
- <error_FILE_OPEN>
- <error_OBJECT_LOCKED>
- <error_ALREADY_EXISTS>
- <error_BAD_FILE_NAME>
- <error_FILE_NOT_FOUND>
- <error_SYNTAX>
- <error_BAD_NO_PARMS>
- <error_TOO_MANY_PARMS>
- <error_CHANNEL>
- <error_END_OF_FILE>
- <error_BAD_FILING_SYSTEM_NAME>
- <error_UNKNOWN_FILING_SYSTEM>
- <error_BAD_KEY>
- <error_BAD_ADDRESS>
- <error_BAD_STRING>
- <error_BAD_ALIAS_STRING>
- <error_BAD_PARM_STRING>
- <error_WILD_CARDS>
- <error_BAD_COMMAND>
- <error_BAD_MAC_VAL>
- <error_BAD_VAR_NAM>
- <error_BAD_VAR_TYPE>
- <error_VAR_NO_ROOM>
- <error_VAR_CANT_FIND>
- <error_VAR_TOO_LONG>
- <error_REDIRECT_FAIL>
- <error_STACK_FULL>
- <error_BAD_HEX>
- <error_BAD_EXPR>
- <error_BAD_BRA>
- <error_STK_OFLO>
- <error_MISS_OPN>
- <error_MISS_OPR>
- <error_BAD_BITS>
- <error_STR_OFLO>
- <error_BAD_ITM>
- <error_DIV_ZERO>
- <error_BAD_BASE>
- <error_BAD_NUMB>
- <error_NUMB_TOO_BIG>
- <error_BAD_CLAIM_NUM>
- <error_BAD_RELEASE>
- <error_BAD_DEV_NO>
- <error_BAD_DEV_VEC_REL>
- <error_BAD_ENV_NUMBER>
- <error_CANT_CANCEL_QUIT>
- <error_CH_DYNAM_CAO>
- <error_CH_DYNAM_NOT_ALL_MOVED>
- <error_APL_WSPACE_IN_USE>
- <error_RAM_FS_UNCHANGEABLE>
- <error_OSCLI_LONG_LINE>
- <error_OSCLI_TOO_HARD>
- <error_RC_EXC>
- <error_RC_NEGATIVE>
- <error_SYS_HEAP_FULL>
- <error_BUFF_OVERFLOW>
- <error_BAD_TIME>
- <error_NO_SUCH_SWI>
- <error_UNIMPLEMENTED>
- <error_OUT_OF_RANGE>
- <error_NO_OSCLI_SPECIALS>
- <error_BAD_PARAMETERS>
- <error_ARG_REPEATED>
- <error_BAD_READ_SYS_INFO>
- <error_CDAT_STACK_OVERFLOW>
- <error_CDAT_BUFFER_OVERFLOW>
- <error_CDAT_BAD_FIELD>
- <error_CANT_START_APPLICATION>
- <error_BAD_COMMAND_OPTION>
- <error_UNKNOWN_SERIAL_OP>
- <error_BAD_HARD>
- <os_READ_CONTROL_TERMINATED>
- <os_READ_BYTE>
- <os_READ_LIMITED>
- <os_DESTROY_VAR>
- <os_GS_TERMINATE_ON_SPACE>
- <os_GS_RETAIN_STICK>
- <os_GS_RETAIN_DOUBLE_QUOTE>
- <keyv_TYPE_ARCHIMEDES>
- <keyv_TYPE_PCAT>
- <os_CURRENT_MODE>
- <os_NONEXISTENT_MODE>
- <os_NOT_ENOUGH_MEMORY_FOR_MODE>
- <os_NO_ALTERNATIVE_MODE>
- <os_HANDLER_MEMORY_LIMIT>
- <os_HANDLER_UNDEFINED_INSTRUCTION>
- <os_HANDLER_PREFETCH_ABORT>
- <os_HANDLER_DATA_ABORT>
- <os_HANDLER_ADDRESS_EXCEPTION>
- <os_HANDLER_OTHER_EXCEPTIONS>
- <os_HANDLER_ERROR>
- <os_HANDLER_CALL_BACK>
- <os_HANDLER_BREAK_PT>
- <os_HANDLER_ESCAPE>
- <os_HANDLER_EVENT>
- <os_HANDLER_EXIT>
- <os_HANDLER_UNUSED_SWI>
- <os_HANDLER_EXCEPTION_REGISTERS>
- <os_HANDLER_APPLICATION_SPACE>
- <os_HANDLER_CAO>
- <os_HANDLER_UP_CALL>
- <os_SORT_CARDINAL>
- <os_SORT_INTEGER>
- <os_SORT_CARDINAL_POINTER>
- <os_SORT_INTEGER_POINTER>
- <os_SORT_CI_STRING>
- <os_SORT_STRING>
- <os_SORT_GIVEN_WORKSPACE>
- <os_SORT_BUILD_ARRAY>
- <os_SORT_OBJECTS>
- <os_AREA_ACCESS_READ_WRITE>
- <os_AREA_ACCESS_READ_ONLY>
- <os_AREA_ACCESS_NONE>
- <os_AREA_ACCESS_SHIFT>
- <os_AREA_NOT_BUFFERABLE>
- <os_AREA_NOT_CACHEABLE>
- <os_AREA_DOUBLY_MAPPED>
- <os_AREA_NO_USER_DRAG>
- <os_AREA_NEEDS_GIVEN_PAGES>
- <os_DYNAMIC_AREA_APPLICATION_SPACE>
- <os_DYNAMIC_AREA_SYSTEM_HEAP>
- <os_DYNAMIC_AREA_RMA>
- <os_DYNAMIC_AREA_SCREEN_MEMORY>
- <os_DYNAMIC_AREA_SYSTEM_SPRITES>
- <os_DYNAMIC_AREA_FONT_CACHE>
- <os_DYNAMIC_AREA_RAM_DISC>
- <os_DYNAMIC_AREA_FREE_POOL>
- <os_COLOUR_SET_BG>
- <os_COLOUR_GIVEN_PATTERN>
- <os_COLOUR_SET_TEXT>
- <os_COLOUR_READ>
- <pointerv_TYPE_QUADRATURE>
- <pointerv_TYPE_MICROSOFT>
- <pointerv_TYPE_MOUSE_SYSTEMS>
- <osdynamicarea_ALLOCATE_AREA>
- <osdynamicarea_ALLOCATE_BASE>
- <osmemory_GIVEN_PAGE_NO>
- <osmemory_GIVEN_LOG_ADDR>
- <osmemory_GIVEN_PHYS_ADDR>
- <osmemory_RETURN_PAGE_NO>
- <osmemory_RETURN_LOG_ADDR>
- <osmemory_RETURN_PHYS_ADDR>
- <osmemory_CACHE>
- <osmemory_CACHE_SHIFT>
- <osmemory_CACHE_DISABLE>
- <osmemory_CACHE_ENABLE>
- <osmemory_TYPE>
- <osmemory_TYPE_SHIFT>
- <osmemory_TYPE_DRAM>
- <osmemory_TYPE_VRAM>
- <osmemory_TYPE_ROM>
- <osmemory_TYPE_IO>
- <osmemory_CONTROLLER_NO>
- <osmemory_CONTROLLER_NO_SHIFT>
- <osmemory_CONTROLLER_TYPE>
- <osmemory_CONTROLLER_TYPE_SHIFT>
- <osmemory_CONTROLLER_TYPE_EASI>
- <osmemory_CONTROLLER_TYPE_EASI_SPACE>
- <osmemory_CONTROLLER_TYPE_VIDC1>
- <osmemory_CONTROLLER_TYPE_VIDC20>
- <os_HEX1_LIMIT>
- <os_HEX2_LIMIT>
- <os_HEX4_LIMIT>
- <os_HEX6_LIMIT>
- <os_HEX8_LIMIT>
- <os_CARDINAL1_LIMIT>
- <os_CARDINAL2_LIMIT>
- <os_CARDINAL3_LIMIT>
- <os_CARDINAL4_LIMIT>
- <os_INTEGER1_LIMIT>
- <os_INTEGER2_LIMIT>
- <os_INTEGER3_LIMIT>
- <os_INTEGER4_LIMIT>
- <os_BINARY1_LIMIT>
- <os_BINARY2_LIMIT>
- <os_BINARY3_LIMIT>
- <os_BINARY4_LIMIT>
- <os_SPACED_CARDINAL1_LIMIT>
- <os_SPACED_CARDINAL2_LIMIT>
- <os_SPACED_CARDINAL3_LIMIT>
- <os_SPACED_CARDINAL4_LIMIT>
- <os_SPACED_INTEGER1_LIMIT>
- <os_SPACED_INTEGER2_LIMIT>
- <os_SPACED_INTEGER3_LIMIT>
- <os_SPACED_INTEGER4_LIMIT>
- <os_FIXED_NET_STATION_LIMIT>
- <os_NET_STATION_LIMIT>
- <os_FIXED_FILE_SIZE_LIMIT>
- <os_FILE_SIZE_LIMIT>
- <os_TRANSITION_MOUSE_RIGHT>
- <os_TRANSITION_MOUSE_MIDDLE>
- <os_TRANSITION_MOUSE_LEFT>
- <os_TRANSITION_KEY_ESCAPE>
- <os_TRANSITION_KEY_F1>
- <os_TRANSITION_KEY_F2>
- <os_TRANSITION_KEY_F3>
- <os_TRANSITION_KEY_F4>
- <os_TRANSITION_KEY_F5>
- <os_TRANSITION_KEY_F6>
- <os_TRANSITION_KEY_F7>
- <os_TRANSITION_KEY_F8>
- <os_TRANSITION_KEY_F9>
- <os_TRANSITION_KEY_F10>
- <os_TRANSITION_KEY_F11>
- <os_TRANSITION_KEY_F12>
- <os_TRANSITION_KEY_PRINT>
- <os_TRANSITION_KEY_SCROLL_LOCK>
- <os_TRANSITION_KEY_BREAK>
- <os_TRANSITION_KEY_GRAVE>
- <os_TRANSITION_KEY1>
- <os_TRANSITION_KEY2>
- <os_TRANSITION_KEY3>
- <os_TRANSITION_KEY4>
- <os_TRANSITION_KEY5>
- <os_TRANSITION_KEY6>
- <os_TRANSITION_KEY7>
- <os_TRANSITION_KEY8>
- <os_TRANSITION_KEY9>
- <os_TRANSITION_KEY0>
- <os_TRANSITION_KEY_HYPHEN>
- <os_TRANSITION_KEY_EQUALS>
- <os_TRANSITION_KEY_POUND>
- <os_TRANSITION_KEY_BACKSPACE>
- <os_TRANSITION_KEY_INSERT>
- <os_TRANSITION_KEY_HOME>
- <os_TRANSITION_KEY_PAGE_UP>
- <os_TRANSITION_KEY_NUM_LOCK>
- <os_TRANSITION_KEY_KEYPAD_SLASH>
- <os_TRANSITION_KEY_KEYPAD_STAR>
- <os_TRANSITION_KEY_KEYPAD_HASH>
- <os_TRANSITION_KEY_TAB>
- <os_TRANSITION_KEYQ>
- <os_TRANSITION_KEYW>
- <os_TRANSITION_KEYE>
- <os_TRANSITION_KEYR>
- <os_TRANSITION_KEYT>
- <os_TRANSITION_KEYY>
- <os_TRANSITION_KEYU>
- <os_TRANSITION_KEYI>
- <os_TRANSITION_KEYO>
- <os_TRANSITION_KEYP>
- <os_TRANSITION_KEY_SQUARE_BRA>
- <os_TRANSITION_KEY_SQUARE_KET>
- <os_TRANSITION_KEY_BACKSLASH>
- <os_TRANSITION_KEY_DELETE>
- <os_TRANSITION_KEY_COPY>
- <os_TRANSITION_KEY_PAGE_DOWN>
- <os_TRANSITION_KEY_KEYPAD7>
- <os_TRANSITION_KEY_KEYPAD8>
- <os_TRANSITION_KEY_KEYPAD9>
- <os_TRANSITION_KEY_KEYPAD_MINUS>
- <os_TRANSITION_KEY_LEFT_CONTROL>
- <os_TRANSITION_KEYA>
- <os_TRANSITION_KEYS>
- <os_TRANSITION_KEYD>
- <os_TRANSITION_KEYF>
- <os_TRANSITION_KEYG>
- <os_TRANSITION_KEYH>
- <os_TRANSITION_KEYJ>
- <os_TRANSITION_KEYK>
- <os_TRANSITION_KEYL>
- <os_TRANSITION_KEY_SEMICOLON>
- <os_TRANSITION_KEY_ACUTE>
- <os_TRANSITION_KEY_RETURN>
- <os_TRANSITION_KEY_KEYPAD4>
- <os_TRANSITION_KEY_KEYPAD5>
- <os_TRANSITION_KEY_KEYPAD6>
- <os_TRANSITION_KEY_KEYPAD_PLUS>
- <os_TRANSITION_KEY_LEFT_SHIFT>
- <os_TRANSITION_KEYZ>
- <os_TRANSITION_KEYX>
- <os_TRANSITION_KEYC>
- <os_TRANSITION_KEYV>
- <os_TRANSITION_KEYB>
- <os_TRANSITION_KEYN>
- <os_TRANSITION_KEYM>
- <os_TRANSITION_KEY_COMMA>
- <os_TRANSITION_KEY_POINT>
- <os_TRANSITION_KEY_SLASH>
- <os_TRANSITION_KEY_RIGHT_SHIFT>
- <os_TRANSITION_KEY_UP>
- <os_TRANSITION_KEY_KEYPAD1>
- <os_TRANSITION_KEY_KEYPAD2>
- <os_TRANSITION_KEY_KEYPAD3>
- <os_TRANSITION_KEY_CAPS_LOCK>
- <os_TRANSITION_KEY_LEFT_ALT>
- <os_TRANSITION_KEY_SPACE>
- <os_TRANSITION_KEY_RIGHT_ALT>
- <os_TRANSITION_KEY_RIGHT_CONTROL>
- <os_TRANSITION_KEY_LEFT>
- <os_TRANSITION_KEY_DOWN>
- <os_TRANSITION_KEY_RIGHT>
- <os_TRANSITION_KEY_KEYPAD0>
- <os_TRANSITION_KEY_KEYPAD_POINT>
- <os_TRANSITION_KEY_ENTER>
- <os_TRANSITION_UP>
- <os_TRANSITION_DOWN>
- <xos_writec>
- <os_writec>
- <xwrchv>
- <wrchv>
- <xos_writes>
- <os_writes>
- <xos_write0>
- <os_write0>
- <xos_new_line>
- <os_new_line>
- <xos_readc>
- <os_readc>
- <xrdchv>
- <rdchv>
- <xos_cli>
- <os_cli>
- <xcliv>
- <cliv>
- <xos_read_line>
- <os_read_line>
- <xos_read_line_given_echo>
- <os_read_line_given_echo>
- <xos_read_line_suppress_invalid>
- <os_read_line_suppress_invalid>
- <xos_read_line_given_echo_suppress_invalid>
- <os_read_line_given_echo_suppress_invalid>
- <xreadlinev>
- <readlinev>
- <xos_control>
- <os_control>
- <xos_get_env>
- <os_get_env>
- <xos_exit>
- <os_exit>
- <xos_set_env>
- <os_set_env>
- <xos_int_on>
- <os_int_on>
- <xos_int_off>
- <os_int_off>
- <xirqv>
- <irqv>
- <xos_call_back>
- <os_call_back>
- <xos_enter_os>
- <os_enter_os>
- <xos_break_pt>
- <os_break_pt>
- <xos_break_ctrl>
- <os_break_ctrl>
- <xos_unused_swi>
- <os_unused_swi>
- <xukswiv>
- <ukswiv>
- <xos_update_memc>
- <os_update_memc>
- <xos_set_call_back>
- <os_set_call_back>
- <xos_mouse>
- <os_mouse>
- <xmousev>
- <mousev>
- <xos_claim>
- <os_claim>
- <xos_release>
- <os_release>
- <xos_read_unsigned>
- <os_read_unsigned>
- <xos_generate_event>
- <os_generate_event>
- <xeventv>
- <eventv>
- <xos_read_var_val>
- <os_read_var_val>
- <xos_set_var_val>
- <os_set_var_val>
- <xos_gs_init>
- <os_gs_init>
- <xos_gs_read>
- <os_gs_read>
- <xos_gs_trans>
- <os_gs_trans>
- <xos_binary_to_decimal>
- <os_binary_to_decimal>
- <xos_change_dynamic_area>
- <os_change_dynamic_area>
- <xos_generate_error>
- <os_generate_error>
- <xerrorv>
- <errorv>
- <xos_read_escape_state>
- <os_read_escape_state>
- <xos_evaluate_expression>
- <os_evaluate_expression>
- <xos_read_palette>
- <os_read_palette>
- <xpalettev>
- <palettev>
- <xpalettev_read_entry>
- <palettev_read_entry>
- <xpalettev_set_entry>
- <palettev_set_entry>
- <xpalettev_set_on>
- <palettev_set_on>
- <xpalettev_set_off>
- <palettev_set_off>
- <xpalettev_default>
- <palettev_default>
- <xpalettev_read_entries>
- <palettev_read_entries>
- <xpalettev_write_entries>
- <palettev_write_entries>
- <xpalettev_set_gamma_corrections>
- <palettev_set_gamma_corrections>
- <xos_service_call>
- <os_service_call>
- <xos_read_vdu_variables>
- <os_read_vdu_variables>
- <xos_read_point>
- <os_read_point>
- <xos_up_call>
- <os_up_call>
- <xupcallv>
- <upcallv>
- <xos_call_a_vector>
- <os_call_a_vector>
- <xos_read_mode_variable>
- <os_read_mode_variable>
- <xos_remove_cursors>
- <os_remove_cursors>
- <xos_restore_cursors>
- <os_restore_cursors>
- <xos_swi_number_to_string>
- <os_swi_number_to_string>
- <xos_swi_number_from_string>
- <os_swi_number_from_string>
- <xos_validate_address>
- <os_validate_address>
- <xos_call_after>
- <os_call_after>
- <xos_call_every>
- <os_call_every>
- <xos_remove_ticker_event>
- <os_remove_ticker_event>
- <xtickerv>
- <tickerv>
- <xos_install_key_handler>
- <os_install_key_handler>
- <xkeyv>
- <keyv>
- <xkeyv_present>
- <keyv_present>
- <xkeyv_transition_up>
- <keyv_transition_up>
- <xkeyv_transition_down>
- <keyv_transition_down>
- <xkeyv_led_state>
- <keyv_led_state>
- <xkeyv_enable_drivers>
- <keyv_enable_drivers>
- <xos_check_mode_valid>
- <os_check_mode_valid>
- <xos_change_environment>
- <os_change_environment>
- <xchangeenvironmentv>
- <changeenvironmentv>
- <xos_claim_screen_memory>
- <os_claim_screen_memory>
- <xosclaimscreenmemory_alloc>
- <osclaimscreenmemory_alloc>
- <xosclaimscreenmemory_free>
- <osclaimscreenmemory_free>
- <xos_read_monotonic_time>
- <os_read_monotonic_time>
- <xos_substitute_args>
- <os_substitute_args>
- <xos_pretty_print>
- <os_pretty_print>
- <xos_plot>
- <os_plot>
- <xukplotv>
- <ukplotv>
- <xos_writen>
- <os_writen>
- <xos_add_to_vector>
- <os_add_to_vector>
- <xos_write_env>
- <os_write_env>
- <xos_read_args>
- <os_read_args>
- <xos_read_ram_fs_limits>
- <os_read_ram_fs_limits>
- <xos_claim_device_vector>
- <os_claim_device_vector>
- <xos_release_device_vector>
- <os_release_device_vector>
- <xos_delink_application>
- <os_delink_application>
- <xos_relink_application>
- <os_relink_application>
- <xos_heap_sort>
- <os_heap_sort>
- <xos_exit_and_die>
- <os_exit_and_die>
- <xos_read_mem_map_info>
- <os_read_mem_map_info>
- <xos_read_mem_map_entries>
- <os_read_mem_map_entries>
- <xos_set_mem_map_entries>
- <os_set_mem_map_entries>
- <xos_add_call_back>
- <os_add_call_back>
- <xos_read_default_handler>
- <os_read_default_handler>
- <xos_set_ecf_origin>
- <os_set_ecf_origin>
- <xos_confirm>
- <os_confirm>
- <xos_changed_box>
- <os_changed_box>
- <xos_crc>
- <os_crc>
- <xos_read_dynamic_area>
- <os_read_dynamic_area>
- <xos_print_char>
- <os_print_char>
- <xos_change_redirection>
- <os_change_redirection>
- <xos_remove_call_back>
- <os_remove_call_back>
- <xos_find_mem_map_entries>
- <os_find_mem_map_entries>
- <xos_set_colour>
- <os_set_colour>
- <xos_read_colour>
- <os_read_colour>
- <xos_pointer>
- <os_pointer>
- <xospointer_get>
- <ospointer_get>
- <xospointer_set>
- <ospointer_set>
- <xpointerv>
- <pointerv>
- <xpointerv_status>
- <pointerv_status>
- <xpointerv_enumerate>
- <pointerv_enumerate>
- <xpointerv_selected>
- <pointerv_selected>
- <xos_screen_mode>
- <os_screen_mode>
- <xosscreenmode_select>
- <osscreenmode_select>
- <xosscreenmode_current>
- <osscreenmode_current>
- <xosscreenmode_enumerate>
- <osscreenmode_enumerate>
- <xos_dynamic_area>
- <os_dynamic_area>
- <xosdynamicarea_create>
- <osdynamicarea_create>
- <xosdynamicarea_delete>
- <osdynamicarea_delete>
- <xosdynamicarea_read>
- <osdynamicarea_read>
- <xosdynamicarea_enumerate>
- <osdynamicarea_enumerate>
- <xosdynamicarea_renumber>
- <osdynamicarea_renumber>
- <xos_memory>
- <os_memory>
- <xosmemory_page_op>
- <osmemory_page_op>
- <xosmemory_read_arrangement_table_size>
- <osmemory_read_arrangement_table_size>
- <xosmemory_read_arrangement_table>
- <osmemory_read_arrangement_table>
- <xosmemory_read_size>
- <osmemory_read_size>
- <xosmemory_read_controller>
- <osmemory_read_controller>
- <xos_claim_processor_vector>
- <os_claim_processor_vector>
- <xosclaimprocessorvector_alloc>
- <osclaimprocessorvector_alloc>
- <xosclaimprocessorvector_free>
- <osclaimprocessorvector_free>
- <xos_reset>
- <os_reset>
- <xos_mmu_control>
- <os_mmu_control>
- <xos_convert_standard_date_and_time>
- <os_convert_standard_date_and_time>
- <xos_convert_date_and_time>
- <os_convert_date_and_time>
- <xos_convert_hex1>
- <os_convert_hex1>
- <xos_convert_hex2>
- <os_convert_hex2>
- <xos_convert_hex4>
- <os_convert_hex4>
- <xos_convert_hex6>
- <os_convert_hex6>
- <xos_convert_hex8>
- <os_convert_hex8>
- <xos_convert_cardinal1>
- <os_convert_cardinal1>
- <xos_convert_cardinal2>
- <os_convert_cardinal2>
- <xos_convert_cardinal3>
- <os_convert_cardinal3>
- <xos_convert_cardinal4>
- <os_convert_cardinal4>
- <xos_convert_integer1>
- <os_convert_integer1>
- <xos_convert_integer2>
- <os_convert_integer2>
- <xos_convert_integer3>
- <os_convert_integer3>
- <xos_convert_integer4>
- <os_convert_integer4>
- <xos_convert_binary1>
- <os_convert_binary1>
- <xos_convert_binary2>
- <os_convert_binary2>
- <xos_convert_binary3>
- <os_convert_binary3>
- <xos_convert_binary4>
- <os_convert_binary4>
- <xos_convert_spaced_cardinal1>
- <os_convert_spaced_cardinal1>
- <xos_convert_spaced_cardinal2>
- <os_convert_spaced_cardinal2>
- <xos_convert_spaced_cardinal3>
- <os_convert_spaced_cardinal3>
- <xos_convert_spaced_cardinal4>
- <os_convert_spaced_cardinal4>
- <xos_convert_spaced_integer1>
- <os_convert_spaced_integer1>
- <xos_convert_spaced_integer2>
- <os_convert_spaced_integer2>
- <xos_convert_spaced_integer3>
- <os_convert_spaced_integer3>
- <xos_convert_spaced_integer4>
- <os_convert_spaced_integer4>
- <xos_convert_fixed_net_station>
- <os_convert_fixed_net_station>
- <xos_convert_net_station>
- <os_convert_net_station>
- <xos_convert_fixed_file_size>
- <os_convert_fixed_file_size>
- <xos_convert_file_size>
- <os_convert_file_size>
- <xos_writei>
- <os_writei>
- <xos_null>
- <os_null>
- <xos_char_to_printer>
- <os_char_to_printer>
- <xos_printer_on>
- <os_printer_on>
- <xos_printer_off>
- <os_printer_off>
- <xos_split_cursors>
- <os_split_cursors>
- <xos_join_cursors>
- <os_join_cursors>
- <xos_vdu_on>
- <os_vdu_on>
- <xos_bell>
- <os_bell>
- <xos_backspace>
- <os_backspace>
- <xos_tab>
- <os_tab>
- <xos_line_feed>
- <os_line_feed>
- <xos_vertical_tab>
- <os_vertical_tab>
- <xos_cls>
- <os_cls>
- <xos_return>
- <os_return>
- <xos_page_mode_on>
- <os_page_mode_on>
- <xos_page_mode_off>
- <os_page_mode_off>
- <xos_clg>
- <os_clg>
- <xos_set_text_colour>
- <os_set_text_colour>
- <xos_set_gcol>
- <os_set_gcol>
- <xos_set_palette>
- <os_set_palette>
- <xos_reset_colours>
- <os_reset_colours>
- <xos_vdu_off>
- <os_vdu_off>
- <xos_set_mode>
- <os_set_mode>
- <xos_misc>
- <os_misc>
- <xos_set_graphics_window>
- <os_set_graphics_window>
- <xos_plot_vdu>
- <os_plot_vdu>
- <xos_reset_windows>
- <os_reset_windows>
- <xos_escape>
- <os_escape>
- <xos_set_text_window>
- <os_set_text_window>
- <xos_set_graphics_origin>
- <os_set_graphics_origin>
- <xos_home_text_cursor>
- <os_home_text_cursor>
- <xos_set_text_cursor>
- <os_set_text_cursor>
- <xos_space>
- <os_space>
- <xos_delete>
- <os_delete>
- <xuserv>
- <userv>
- <xukvdu23v>
- <ukvdu23v>
- <xvduxv>
- <vduxv>
- <xservice_release_fiq>
- <service_release_fiq>
- <xservice_claim_fiq>
- <service_claim_fiq>
- <xservice_reset>
- <service_reset>
- <xservice_key_handler>
- <service_key_handler>
- <xservice_mode_change>
- <service_mode_change>
- <xservice_claim_fiq_in_background>
- <service_claim_fiq_in_background>
- <xservice_memory_moved>
- <service_memory_moved>
- <xservice_pre_mode_change>
- <service_pre_mode_change>
- <xservice_mode_extension>
- <service_mode_extension>
- <xservice_mode_translation>
- <service_mode_translation>
- <xservice_validate_address>
- <service_validate_address>
- <xservice_monitor_lead_translation>
- <service_monitor_lead_translation>
- <xservice_mode_changing>
- <service_mode_changing>
- <xservice_enumerate_screen_modes>
- <service_enumerate_screen_modes>
- <xservice_pages_unsafe>
- <service_pages_unsafe>
- <xservice_pages_safe>
- <service_pages_safe>
- <xservice_dynamic_area_create>
- <service_dynamic_area_create>
- <xservice_dynamic_area_remove>
- <service_dynamic_area_remove>
- <xservice_dynamic_area_renumber>
- <service_dynamic_area_renumber>
- <xevent_char_input>
- <event_char_input>
- <xevent_vsync>
- <event_vsync>
- <xevent_interval_timer>
- <event_interval_timer>
- <xevent_escape>
- <event_escape>
- <xevent_user>
- <event_user>
- <xevent_mouse_transition>
- <event_mouse_transition>
- <xevent_key_transition>
- <event_key_transition>
- <xupcall_move_memory_request>
- <upcall_move_memory_request>