home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / oslib / CStrong / OSWord / HelpData next >
Encoding:
Text File  |  1994-08-10  |  22.4 KB  |  462 lines

  1. osword_line_block
  2. Defined in:   <osword=>osword.$>.h
  3. Declaration:  typedef
  4.                  struct
  5.                  {  short line;
  6.                     byte size;
  7.                     byte min_char;
  8.                     byte max_char;
  9.                  }
  10.                  osword_line_block;osword_timer_block
  11. Defined in:   <osword=>osword.$>.h
  12. Declaration:  typedef
  13.                  struct
  14.                  {  byte b [5];
  15.                  }
  16.                  osword_timer_block;osword_gcol_block
  17. Defined in:   <osword=>osword.$>.h
  18. Declaration:  typedef
  19.                  struct
  20.                  {  short x;
  21.                     short y;
  22.                     <os_gcol=>os.os_gcol> gcol;
  23.                  }
  24.                  osword_gcol_block;osword_char_definition_block
  25. Defined in:   <osword=>osword.$>.h
  26. Declaration:  typedef
  27.                  struct
  28.                  {  char c;
  29.                     byte definition [8];
  30.                  }
  31.                  osword_char_definition_block;osword_palette_block
  32. Defined in:   <osword=>osword.$>.h
  33. Declaration:  typedef
  34.                  struct
  35.                  {  <os_gcol=>os.os_gcol> gcol;
  36.                     byte colour_number;
  37.                     byte r;
  38.                     byte g;
  39.                     byte b;
  40.                  }
  41.                  osword_palette_block;osword_cursor_position_block
  42. Defined in:   <osword=>osword.$>.h
  43. Declaration:  typedef
  44.                  struct
  45.                  {  short xprev;
  46.                     short yprev;
  47.                     short x;
  48.                     short y;
  49.                  }
  50.                  osword_cursor_position_block;oswordreadclock_local_string_block
  51. Defined in:   <osword=>osword.$>.h
  52. Declaration:  typedef
  53.                  union
  54.                  {  byte op;
  55.                     struct
  56.                     {  char c [...];
  57.                     }
  58.                     string;
  59.                  }
  60.                  oswordreadclock_local_string_block;oswordreadclock_local_bcd_block
  61. Defined in:   <osword=>osword.$>.h
  62. Declaration:  typedef
  63.                  union
  64.                  {  byte op;
  65.                     <os_bcd_date_and_time=>os.os_bcd_date_and_time> date_and_time;
  66.                  }
  67.                  oswordreadclock_local_bcd_block;oswordreadclock_convert_bcd_to_string_block
  68. Defined in:   <osword=>osword.$>.h
  69. Declaration:  typedef
  70.                  union
  71.                  {  struct
  72.                     {  byte op;
  73.                        <os_bcd_date_and_time=>os.os_bcd_date_and_time> date_and_time;
  74.                     }
  75.                     bcd;
  76.                     struct
  77.                     {  char c [...];
  78.                     }
  79.                     string;
  80.                  }
  81.                  oswordreadclock_convert_bcd_to_string_block;oswordreadclock_utc_block
  82. Defined in:   <osword=>osword.$>.h
  83. Declaration:  typedef
  84.                  union
  85.                  {  byte op;
  86.                     <os_date_and_time=>os.os_date_and_time> utc;
  87.                  }
  88.                  oswordreadclock_utc_block;oswordwriteclock_block
  89. Defined in:   <osword=>osword.$>.h
  90. Declaration:  typedef
  91.                  struct
  92.                  {  byte op;
  93.                     char string [...];
  94.                  }
  95.                  oswordwriteclock_block;oswordpointer_define_block
  96. Defined in:   <osword=>osword.$>.h
  97. Declaration:  typedef
  98.                  struct
  99.                  {  byte reserved [2];
  100.                     byte op;
  101.                     byte shape_no;
  102.                     byte width;
  103.                     byte height;
  104.                     byte xactive;
  105.                     byte yactive;
  106.                     byte *data;
  107.                  }
  108.                  oswordpointer_define_block;oswordpointer_bbox_block
  109. Defined in:   <osword=>osword.$>.h
  110. Declaration:  typedef
  111.                  struct
  112.                  {  byte reserved [3];
  113.                     byte op;
  114.                     short x0;
  115.                     short y0;
  116.                     short x1;
  117.                     short y1;
  118.                  }
  119.                  oswordpointer_bbox_block;oswordpointer_step_block
  120. Defined in:   <osword=>osword.$>.h
  121. Declaration:  typedef
  122.                  struct
  123.                  {  byte op;
  124.                     byte xstep;
  125.                     byte ystep;
  126.                  }
  127.                  oswordpointer_step_block;oswordpointer_position_block
  128. Defined in:   <osword=>osword.$>.h
  129. Declaration:  typedef
  130.                  struct
  131.                  {  byte reserved;
  132.                     byte op;
  133.                     short x;
  134.                     short y;
  135.                  }
  136.                  oswordpointer_position_block;osword_screen_base_block
  137. Defined in:   <osword=>osword.$>.h
  138. Declaration:  typedef
  139.                  struct
  140.                  {  byte reserved [3];
  141.                     byte type;
  142.                     byte *base;
  143.                  }
  144.                  osword_screen_base_block;osword_block
  145. Defined in:   <osword=>osword.$>.h
  146. Declaration:  typedef
  147.                  union
  148.                  {  <osword_line_block> line;
  149.                     <osword_timer_block> timer;
  150.                     <osword_gcol_block> gcol;
  151.                     <osword_char_definition_block> char_definition;
  152.                     <osword_palette_block> palette;
  153.                     <osword_cursor_position_block> cursor_position;
  154.                     <oswordreadclock_local_string_block> string;
  155.                     <oswordreadclock_local_bcd_block> bcd;
  156.                     <oswordreadclock_convert_bcd_to_string_block> convert_bcd_to_string;
  157.                     <oswordreadclock_utc_block> utc;
  158.                     <oswordwriteclock_block> write_clock;
  159.                     <oswordpointer_define_block> pointer_define;
  160.                     <oswordpointer_bbox_block> pointer_bbox;
  161.                     <oswordpointer_step_block> pointer_step;
  162.                     <oswordpointer_position_block> pointer_position;
  163.                     <osword_screen_base_block> screen_base;
  164.                  }
  165.                  osword_block;oswordreadclock_OP_LOCAL_STRING
  166. Defined in:   <osword=>osword.$>.h
  167. Declaration:  #define oswordreadclock_OP_LOCAL_STRING 0oswordreadclock_OP_LOCAL_BCD
  168. Defined in:   <osword=>osword.$>.h
  169. Declaration:  #define oswordreadclock_OP_LOCAL_BCD 1oswordreadclock_OP_CONVERT_BCD_TO_STRING
  170. Defined in:   <osword=>osword.$>.h
  171. Declaration:  #define oswordreadclock_OP_CONVERT_BCD_TO_STRING 2oswordreadclock_OP_UTC
  172. Defined in:   <osword=>osword.$>.h
  173. Declaration:  #define oswordreadclock_OP_UTC 3oswordwriteclock_OP_TIME_LOCAL_STRING
  174. Defined in:   <osword=>osword.$>.h
  175. Declaration:  #define oswordwriteclock_OP_TIME_LOCAL_STRING 8oswordwriteclock_OP_DATE_LOCAL_STRING
  176. Defined in:   <osword=>osword.$>.h
  177. Declaration:  #define oswordwriteclock_OP_DATE_LOCAL_STRING 15oswordwriteclock_OP_LOCAL_STRING
  178. Defined in:   <osword=>osword.$>.h
  179. Declaration:  #define oswordwriteclock_OP_LOCAL_STRING 24oswordpointer_OP_DEFINE
  180. Defined in:   <osword=>osword.$>.h
  181. Declaration:  #define oswordpointer_OP_DEFINE 0oswordpointer_OP_SET_BBOX
  182. Defined in:   <osword=>osword.$>.h
  183. Declaration:  #define oswordpointer_OP_SET_BBOX 1oswordpointer_OP_STEP
  184. Defined in:   <osword=>osword.$>.h
  185. Declaration:  #define oswordpointer_OP_STEP 2oswordpointer_OP_SET_POSITION
  186. Defined in:   <osword=>osword.$>.h
  187. Declaration:  #define oswordpointer_OP_SET_POSITION 3oswordpointer_OP_READ_POSITION
  188. Defined in:   <osword=>osword.$>.h
  189. Declaration:  #define oswordpointer_OP_READ_POSITION 4oswordpointer_OP_SET_UNLINKED_POSITION
  190. Defined in:   <osword=>osword.$>.h
  191. Declaration:  #define oswordpointer_OP_SET_UNLINKED_POSITION 5oswordpointer_OP_READ_UNLINKED_POSITION
  192. Defined in:   <osword=>osword.$>.h
  193. Declaration:  #define oswordpointer_OP_READ_UNLINKED_POSITION 6osword_CHAR_DEFINITION_ECF1
  194. Defined in:   <osword=>osword.$>.h
  195. Declaration:  #define osword_CHAR_DEFINITION_ECF1 ((char) '\\x02')osword_CHAR_DEFINITION_ECF2
  196. Defined in:   <osword=>osword.$>.h
  197. Declaration:  #define osword_CHAR_DEFINITION_ECF2 ((char) '\\x03')osword_CHAR_DEFINITION_ECF3
  198. Defined in:   <osword=>osword.$>.h
  199. Declaration:  #define osword_CHAR_DEFINITION_ECF3 ((char) '\\x04')osword_CHAR_DEFINITION_ECF4
  200. Defined in:   <osword=>osword.$>.h
  201. Declaration:  #define osword_CHAR_DEFINITION_ECF4 ((char) '\\x05')osword_CHAR_DEFINITION_DOT_DASH_PATTERN
  202. Defined in:   <osword=>osword.$>.h
  203. Declaration:  #define osword_CHAR_DEFINITION_DOT_DASH_PATTERN ((char) '\\x06')xos_word
  204. General purpose call to alter status variables and perform other actionsos_word
  205. General purpose call to alter status variables and perform other actionsxwordv
  206. OS_Word vectorwordv
  207. OS_Word vectorxosword_read_line
  208. Defined in:   <osword=>osword.$>.h
  209. Declaration:  extern <os_error=>os.os_error> *xosword_read_line (<osword_line_block> *line,
  210.                  int *used,
  211.                  bits *psr);
  212. Summary:      Reads a line from the input stream to memory (prefer OS_ReadLine)osword_read_line
  213. Defined in:   <osword=>osword.$>.h
  214. Declaration:  extern bits osword_read_line (<osword_line_block> *line,
  215.                  int *used);
  216. Summary:      Reads a line from the input stream to memory (prefer OS_ReadLine)xosword_read_system_clock
  217. Defined in:   <osword=>osword.$>.h
  218. Declaration:  extern <os_error=>os.os_error> *xosword_read_system_clock (<osword_timer_block> *clock);
  219. Summary:      Reads the system clockosword_read_system_clock
  220. Defined in:   <osword=>osword.$>.h
  221. Declaration:  extern void osword_read_system_clock (<osword_timer_block> *clock);
  222. Summary:      Reads the system clockxosword_write_system_clock
  223. Defined in:   <osword=>osword.$>.h
  224. Declaration:  extern <os_error=>os.os_error> *xosword_write_system_clock (<osword_timer_block> *clock);
  225. Summary:      Writes the system clockosword_write_system_clock
  226. Defined in:   <osword=>osword.$>.h
  227. Declaration:  extern void osword_write_system_clock (<osword_timer_block> *clock);
  228. Summary:      Writes the system clockxosword_read_interval_timer
  229. Defined in:   <osword=>osword.$>.h
  230. Declaration:  extern <os_error=>os.os_error> *xosword_read_interval_timer (<osword_timer_block> *timer);
  231. Summary:      Reads the interval timerosword_read_interval_timer
  232. Defined in:   <osword=>osword.$>.h
  233. Declaration:  extern void osword_read_interval_timer (<osword_timer_block> *timer);
  234. Summary:      Reads the interval timerxosword_write_interval_timer
  235. Defined in:   <osword=>osword.$>.h
  236. Declaration:  extern <os_error=>os.os_error> *xosword_write_interval_timer (<osword_timer_block> *timer);
  237. Summary:      Writes the interval timerosword_write_interval_timer
  238. Defined in:   <osword=>osword.$>.h
  239. Declaration:  extern void osword_write_interval_timer (<osword_timer_block> *timer);
  240. Summary:      Writes the interval timerxosword_read_gcol
  241. Defined in:   <osword=>osword.$>.h
  242. Declaration:  extern <os_error=>os.os_error> *xosword_read_gcol (<osword_gcol_block> *gcol);
  243. Summary:      Reads the logical colour of a pixel (prefer OS_ReadPoint)osword_read_gcol
  244. Defined in:   <osword=>osword.$>.h
  245. Declaration:  extern void osword_read_gcol (<osword_gcol_block> *gcol);
  246. Summary:      Reads the logical colour of a pixel (prefer OS_ReadPoint)xosword_read_char_definition
  247. Defined in:   <osword=>osword.$>.h
  248. Declaration:  extern <os_error=>os.os_error> *xosword_read_char_definition (<osword_char_definition_block> *definition);
  249. Summary:      Reads a character definitionosword_read_char_definition
  250. Defined in:   <osword=>osword.$>.h
  251. Declaration:  extern void osword_read_char_definition (<osword_char_definition_block> *definition);
  252. Summary:      Reads a character definitionxosword_read_palette
  253. Defined in:   <osword=>osword.$>.h
  254. Declaration:  extern <os_error=>os.os_error> *xosword_read_palette (<osword_palette_block> *entry);
  255. Summary:      Reads the palette (prefer OS_ReadPalette)osword_read_palette
  256. Defined in:   <osword=>osword.$>.h
  257. Declaration:  extern void osword_read_palette (<osword_palette_block> *entry);
  258. Summary:      Reads the palette (prefer OS_ReadPalette)xosword_write_palette
  259. Defined in:   <osword=>osword.$>.h
  260. Declaration:  extern <os_error=>os.os_error> *xosword_write_palette (<osword_palette_block> *entry);
  261. Summary:      Writes the palette (prefer os_VDU_SET_PALETTE)osword_write_palette
  262. Defined in:   <osword=>osword.$>.h
  263. Declaration:  extern void osword_write_palette (<osword_palette_block> *entry);
  264. Summary:      Writes the palette (prefer os_VDU_SET_PALETTE)xosword_read_cursor_position
  265. Defined in:   <osword=>osword.$>.h
  266. Declaration:  extern <os_error=>os.os_error> *xosword_read_cursor_position (<osword_cursor_position_block> *position);
  267. Summary:      Reads the current and previous graphics cursor positions (prefer OS_ReadVduVariables)osword_read_cursor_position
  268. Defined in:   <osword=>osword.$>.h
  269. Declaration:  extern void osword_read_cursor_position (<osword_cursor_position_block> *position);
  270. Summary:      Reads the current and previous graphics cursor positions (prefer OS_ReadVduVariables)xoswordread_clock
  271. Reads the real-time clockoswordread_clock
  272. Reads the real-time clockxoswordreadclock_local_string
  273. Defined in:   <osword=>osword.$>.h
  274. Declaration:  extern <os_error=>os.os_error> *xoswordreadclock_local_string (<oswordreadclock_local_string_block> *string);
  275. Summary:      Reads the real-time clock as a string, converting to local timeoswordreadclock_local_string
  276. Defined in:   <osword=>osword.$>.h
  277. Declaration:  extern void oswordreadclock_local_string (<oswordreadclock_local_string_block> *string);
  278. Summary:      Reads the real-time clock as a string, converting to local timexoswordreadclock_local_bcd
  279. Defined in:   <osword=>osword.$>.h
  280. Declaration:  extern <os_error=>os.os_error> *xoswordreadclock_local_bcd (<oswordreadclock_local_bcd_block> *bcd);
  281. Summary:      Reads the real-time clock in BCD format, converting to local timeoswordreadclock_local_bcd
  282. Defined in:   <osword=>osword.$>.h
  283. Declaration:  extern void oswordreadclock_local_bcd (<oswordreadclock_local_bcd_block> *bcd);
  284. Summary:      Reads the real-time clock in BCD format, converting to local timexoswordreadclock_convert_bcd_to_string
  285. Defined in:   <osword=>osword.$>.h
  286. Declaration:  extern <os_error=>os.os_error> *xoswordreadclock_convert_bcd_to_string (<oswordreadclock_convert_bcd_to_string_block> *convert_bcd_to_String);
  287. Summary:      Converts a BCD clock value into string formatoswordreadclock_convert_bcd_to_string
  288. Defined in:   <osword=>osword.$>.h
  289. Declaration:  extern void oswordreadclock_convert_bcd_to_string (<oswordreadclock_convert_bcd_to_string_block> *convert_bcd_to_String);
  290. Summary:      Converts a BCD clock value into string formatxoswordreadclock_utc
  291. Defined in:   <osword=>osword.$>.h
  292. Declaration:  extern <os_error=>os.os_error> *xoswordreadclock_utc (<oswordreadclock_utc_block> *utc);
  293. Summary:      Reads the real-time clock in 5-byte formatoswordreadclock_utc
  294. Defined in:   <osword=>osword.$>.h
  295. Declaration:  extern void oswordreadclock_utc (<oswordreadclock_utc_block> *utc);
  296. Summary:      Reads the real-time clock in 5-byte formatxosword_write_clock
  297. Writes the real-time clockosword_write_clock
  298. Writes the real-time clockxoswordwriteclock_time_local_string
  299. Defined in:   <osword=>osword.$>.h
  300. Declaration:  extern <os_error=>os.os_error> *xoswordwriteclock_time_local_string (<oswordwriteclock_block> *time);
  301. Summary:      Writes the real-time clock with a time string, converting from local timeoswordwriteclock_time_local_string
  302. Defined in:   <osword=>osword.$>.h
  303. Declaration:  extern void oswordwriteclock_time_local_string (<oswordwriteclock_block> *time);
  304. Summary:      Writes the real-time clock with a time string, converting from local timexoswordwriteclock_date_local_string
  305. Defined in:   <osword=>osword.$>.h
  306. Declaration:  extern <os_error=>os.os_error> *xoswordwriteclock_date_local_string (<oswordwriteclock_block> *date);
  307. Summary:      Writes the real-time clock with a date string, converting from local timeoswordwriteclock_date_local_string
  308. Defined in:   <osword=>osword.$>.h
  309. Declaration:  extern void oswordwriteclock_date_local_string (<oswordwriteclock_block> *date);
  310. Summary:      Writes the real-time clock with a date string, converting from local timexoswordwriteclock_date_and_time_local_string
  311. Defined in:   <osword=>osword.$>.h
  312. Declaration:  extern <os_error=>os.os_error> *xoswordwriteclock_date_and_time_local_string (<oswordwriteclock_block> *date_and_time);
  313. Summary:      Writes the real-time clock with a time and date string, converting from local timeoswordwriteclock_date_and_time_local_string
  314. Defined in:   <osword=>osword.$>.h
  315. Declaration:  extern void oswordwriteclock_date_and_time_local_string (<oswordwriteclock_block> *date_and_time);
  316. Summary:      Writes the real-time clock with a time and date string, converting from local timexosword_pointer
  317. Defines pointer and mouse parametersosword_pointer
  318. Defines pointer and mouse parametersxoswordpointer_define
  319. Defined in:   <osword=>osword.$>.h
  320. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_define (<oswordpointer_define_block> *define);
  321. Summary:      Defines the pointer size, shape and active point (prefer OSSpriteOp_SetPointerShape)oswordpointer_define
  322. Defined in:   <osword=>osword.$>.h
  323. Declaration:  extern void oswordpointer_define (<oswordpointer_define_block> *define);
  324. Summary:      Defines the pointer size, shape and active point (prefer OSSpriteOp_SetPointerShape)xoswordpointer_set_bbox
  325. Defined in:   <osword=>osword.$>.h
  326. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_set_bbox (<oswordpointer_bbox_block> *bbox);
  327. Summary:      Defines the mouse coordinate bounding boxoswordpointer_set_bbox
  328. Defined in:   <osword=>osword.$>.h
  329. Declaration:  extern void oswordpointer_set_bbox (<oswordpointer_bbox_block> *bbox);
  330. Summary:      Defines the mouse coordinate bounding boxxoswordpointer_step
  331. Defined in:   <osword=>osword.$>.h
  332. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_step (<oswordpointer_step_block> *step);
  333. Summary:      Defines the mouse multipliersoswordpointer_step
  334. Defined in:   <osword=>osword.$>.h
  335. Declaration:  extern void oswordpointer_step (<oswordpointer_step_block> *step);
  336. Summary:      Defines the mouse multipliersxoswordpointer_set_position
  337. Defined in:   <osword=>osword.$>.h
  338. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_set_position (<oswordpointer_position_block> *pos);
  339. Summary:      Sets the mouse positionoswordpointer_set_position
  340. Defined in:   <osword=>osword.$>.h
  341. Declaration:  extern void oswordpointer_set_position (<oswordpointer_position_block> *pos);
  342. Summary:      Sets the mouse positionxoswordpointer_read_position
  343. Defined in:   <osword=>osword.$>.h
  344. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_read_position (<oswordpointer_position_block> *pos);
  345. Summary:      Reads the unbuffered mouse positionoswordpointer_read_position
  346. Defined in:   <osword=>osword.$>.h
  347. Declaration:  extern void oswordpointer_read_position (<oswordpointer_position_block> *pos);
  348. Summary:      Reads the unbuffered mouse positionxoswordpointer_set_unlinked_position
  349. Defined in:   <osword=>osword.$>.h
  350. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_set_unlinked_position (<oswordpointer_position_block> *pos);
  351. Summary:      Sets the pointer positionoswordpointer_set_unlinked_position
  352. Defined in:   <osword=>osword.$>.h
  353. Declaration:  extern void oswordpointer_set_unlinked_position (<oswordpointer_position_block> *pos);
  354. Summary:      Sets the pointer positionxoswordpointer_read_unlinked_position
  355. Defined in:   <osword=>osword.$>.h
  356. Declaration:  extern <os_error=>os.os_error> *xoswordpointer_read_unlinked_position (<oswordpointer_position_block> *pos);
  357. Summary:      Reads the pointer positionoswordpointer_read_unlinked_position
  358. Defined in:   <osword=>osword.$>.h
  359. Declaration:  extern void oswordpointer_read_unlinked_position (<oswordpointer_position_block> *pos);
  360. Summary:      Reads the pointer positionxosword_write_screen_base
  361. Defined in:   <osword=>osword.$>.h
  362. Declaration:  extern <os_error=>os.os_error> *xosword_write_screen_base (<osword_screen_base_block> *screen_base);
  363. Summary:      Writes the screen base addressosword_write_screen_base
  364. Defined in:   <osword=>osword.$>.h
  365. Declaration:  extern void osword_write_screen_base (<osword_screen_base_block> *screen_base);
  366. Summary:      Writes the screen base addressOSWord
  367. <osword_line_block>
  368. <osword_timer_block>
  369. <osword_gcol_block>
  370. <osword_char_definition_block>
  371. <osword_palette_block>
  372. <osword_cursor_position_block>
  373. <oswordreadclock_local_string_block>
  374. <oswordreadclock_local_bcd_block>
  375. <oswordreadclock_convert_bcd_to_string_block>
  376. <oswordreadclock_utc_block>
  377. <oswordwriteclock_block>
  378. <oswordpointer_define_block>
  379. <oswordpointer_bbox_block>
  380. <oswordpointer_step_block>
  381. <oswordpointer_position_block>
  382. <osword_screen_base_block>
  383. <osword_block>
  384. <oswordreadclock_OP_LOCAL_STRING>
  385. <oswordreadclock_OP_LOCAL_BCD>
  386. <oswordreadclock_OP_CONVERT_BCD_TO_STRING>
  387. <oswordreadclock_OP_UTC>
  388. <oswordwriteclock_OP_TIME_LOCAL_STRING>
  389. <oswordwriteclock_OP_DATE_LOCAL_STRING>
  390. <oswordwriteclock_OP_LOCAL_STRING>
  391. <oswordpointer_OP_DEFINE>
  392. <oswordpointer_OP_SET_BBOX>
  393. <oswordpointer_OP_STEP>
  394. <oswordpointer_OP_SET_POSITION>
  395. <oswordpointer_OP_READ_POSITION>
  396. <oswordpointer_OP_SET_UNLINKED_POSITION>
  397. <oswordpointer_OP_READ_UNLINKED_POSITION>
  398. <osword_CHAR_DEFINITION_ECF1>
  399. <osword_CHAR_DEFINITION_ECF2>
  400. <osword_CHAR_DEFINITION_ECF3>
  401. <osword_CHAR_DEFINITION_ECF4>
  402. <osword_CHAR_DEFINITION_DOT_DASH_PATTERN>
  403. <xos_word>
  404. <os_word>
  405. <xwordv>
  406. <wordv>
  407. <xosword_read_line>
  408. <osword_read_line>
  409. <xosword_read_system_clock>
  410. <osword_read_system_clock>
  411. <xosword_write_system_clock>
  412. <osword_write_system_clock>
  413. <xosword_read_interval_timer>
  414. <osword_read_interval_timer>
  415. <xosword_write_interval_timer>
  416. <osword_write_interval_timer>
  417. <xosword_read_gcol>
  418. <osword_read_gcol>
  419. <xosword_read_char_definition>
  420. <osword_read_char_definition>
  421. <xosword_read_palette>
  422. <osword_read_palette>
  423. <xosword_write_palette>
  424. <osword_write_palette>
  425. <xosword_read_cursor_position>
  426. <osword_read_cursor_position>
  427. <xoswordread_clock>
  428. <oswordread_clock>
  429. <xoswordreadclock_local_string>
  430. <oswordreadclock_local_string>
  431. <xoswordreadclock_local_bcd>
  432. <oswordreadclock_local_bcd>
  433. <xoswordreadclock_convert_bcd_to_string>
  434. <oswordreadclock_convert_bcd_to_string>
  435. <xoswordreadclock_utc>
  436. <oswordreadclock_utc>
  437. <xosword_write_clock>
  438. <osword_write_clock>
  439. <xoswordwriteclock_time_local_string>
  440. <oswordwriteclock_time_local_string>
  441. <xoswordwriteclock_date_local_string>
  442. <oswordwriteclock_date_local_string>
  443. <xoswordwriteclock_date_and_time_local_string>
  444. <oswordwriteclock_date_and_time_local_string>
  445. <xosword_pointer>
  446. <osword_pointer>
  447. <xoswordpointer_define>
  448. <oswordpointer_define>
  449. <xoswordpointer_set_bbox>
  450. <oswordpointer_set_bbox>
  451. <xoswordpointer_step>
  452. <oswordpointer_step>
  453. <xoswordpointer_set_position>
  454. <oswordpointer_set_position>
  455. <xoswordpointer_read_position>
  456. <oswordpointer_read_position>
  457. <xoswordpointer_set_unlinked_position>
  458. <oswordpointer_set_unlinked_position>
  459. <xoswordpointer_read_unlinked_position>
  460. <oswordpointer_read_unlinked_position>
  461. <xosword_write_screen_base>
  462. <osword_write_screen_base>