├── Makefile ├── README.md ├── doc ├── ao_append_global_option.html ├── ao_array2string.html ├── ao_default_driver_id.html ├── ao_driver_id.html ├── ao_driver_info.html ├── ao_driver_info_list.html ├── ao_initialize.html ├── ao_is_big_endian.html ├── ao_open_file.html ├── ao_open_live.html ├── ao_shutdown.html ├── device.html ├── device_close.html ├── device_play.html ├── index.html ├── info.html ├── option.html ├── sample_format.html └── style.css ├── examples ├── ao_example.lua ├── ao_example2.lua ├── ao_file.lua └── ao_live.lua ├── src └── lao.c └── test └── test_ao.lua /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/README.md -------------------------------------------------------------------------------- /doc/ao_append_global_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_append_global_option.html -------------------------------------------------------------------------------- /doc/ao_array2string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_array2string.html -------------------------------------------------------------------------------- /doc/ao_default_driver_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_default_driver_id.html -------------------------------------------------------------------------------- /doc/ao_driver_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_driver_id.html -------------------------------------------------------------------------------- /doc/ao_driver_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_driver_info.html -------------------------------------------------------------------------------- /doc/ao_driver_info_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_driver_info_list.html -------------------------------------------------------------------------------- /doc/ao_initialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_initialize.html -------------------------------------------------------------------------------- /doc/ao_is_big_endian.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_is_big_endian.html -------------------------------------------------------------------------------- /doc/ao_open_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_open_file.html -------------------------------------------------------------------------------- /doc/ao_open_live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_open_live.html -------------------------------------------------------------------------------- /doc/ao_shutdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/ao_shutdown.html -------------------------------------------------------------------------------- /doc/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/device.html -------------------------------------------------------------------------------- /doc/device_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/device_close.html -------------------------------------------------------------------------------- /doc/device_play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/device_play.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/info.html -------------------------------------------------------------------------------- /doc/option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/option.html -------------------------------------------------------------------------------- /doc/sample_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/sample_format.html -------------------------------------------------------------------------------- /doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/doc/style.css -------------------------------------------------------------------------------- /examples/ao_example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/examples/ao_example.lua -------------------------------------------------------------------------------- /examples/ao_example2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/examples/ao_example2.lua -------------------------------------------------------------------------------- /examples/ao_file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/examples/ao_file.lua -------------------------------------------------------------------------------- /examples/ao_live.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/examples/ao_live.lua -------------------------------------------------------------------------------- /src/lao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/src/lao.c -------------------------------------------------------------------------------- /test/test_ao.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLinx/lao/HEAD/test/test_ao.lua --------------------------------------------------------------------------------