Administrator
|
This post was updated on .
Re-hello.
Imho, the most easy for beginning is to jump into the demos and analyze the code to understand how it works.
Then, If you want to create a project from scratch:
- Create a directory ( example c:/myuosproject )
- Paste into it all the units from /uos/src/.
- Create your project in that directory.
- In uses section of main form, add "uos_flat".
- Depend on the OS and what you use in your program, copy the libraries needed from /uos/examples/lib/ into, for example, c:/myuosproject/lib
- If you want to only play wav files, only PortAudio and SndFile libraries are needed.
- When using uos_loadlib() in your code, assign this path + name of the libraries (see examples).
- Then add all the uos methods you need, taken inspiration from the uos-examples.
You may also customize uos to only use the methods you need editing uos_define.inc (But that is for later ;-) )
|