From 7910ebfacfda11ee9964cd17907e18a8ffe654f2 Mon Sep 17 00:00:00 2001 From: cuz Date: Mon, 21 Feb 2005 20:19:54 +0000 Subject: [PATCH] Added joystick functions from joystick.h git-svn-id: svn://svn.cc65.org/cc65/trunk@3401 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/funcref.sgml | 159 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 158 insertions(+), 1 deletion(-) diff --git a/doc/funcref.sgml b/doc/funcref.sgml index d2325416c..8055285cb 100644 --- a/doc/funcref.sgml +++ b/doc/funcref.sgml @@ -217,7 +217,14 @@ function.

-(incomplete) + + + + + + + +

@@ -2684,6 +2691,156 @@ used in presence of a prototype. +joy_count

+ + + +/ + +A joystick driver must be loaded using before calling this function. +The function returns the number of joysticks supported by the driver. +There's no way to check for the number of actually connected joysticks. +The function is only available as fastcall function, so it may only be +used in presence of a prototype. + +, + + + + + +joy_install

+ + + +/ + +The function is only available as fastcall function, so it may only be +used in presence of a prototype. + +, +, + + + + + +joy_load_driver

+ + + +/ + +The function is only available as fastcall function, so it may only be +used in presence of a prototype. + +, +, + + + + + +joy_read

+ + + +/ +. + +A joystick driver must be loaded using before calling this function. +The function is only available as fastcall function, so it may only be +used in presence of a prototype. + +, +, + + + + + +joy_uninstall

+ + + +/ + +A joystick driver must be installed using before calling this function. +The function is only available as fastcall function, so it may only be +used in presence of a prototype. + +, +, + + + + + +joy_unload

+ + + +/ + +A joystick driver must be loaded using before calling this function. +The function is only available as fastcall function, so it may only be +used in presence of a prototype. + + + + + + kbhit

-- 2.39.5