Browse Source

README improvements and fix a typo

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.0.0
falkTX 5 years ago
parent
commit
c321f80f7c
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      README.md

+ 8
- 8
README.md View File

@@ -14,34 +14,34 @@ enable the [KXStudio repositories](https://kx.studio/Repositories) and install W


Do the following to build for 32-bit Wine. Do the following to build for 32-bit Wine.


```
```sh
make clean make clean
make 32 make 32
``` ```


To install (substitute with the path to the 32-bit wine libs for your distro). To install (substitute with the path to the 32-bit wine libs for your distro).


```
```sh
sudo cp build32/wineasio.dll.so /usr/lib32/wine/wineasio.dll.so sudo cp build32/wineasio.dll.so /usr/lib32/wine/wineasio.dll.so
``` ```


Do the following to build for 64-bit Wine. Do the following to build for 64-bit Wine.


```
```sh
make clean make clean
make 64 make 64
``` ```


To install (substitute with the path to the 64-bit wine libs for your distro). To install (substitute with the path to the 64-bit wine libs for your distro).


```
```sh
sudo cp build64/wineasio.dll.so /usr/lib/wine/wineasio.dll.so sudo cp build64/wineasio.dll.so /usr/lib/wine/wineasio.dll.so
``` ```


Finally the dll must be registered in the wineprefix. Finally the dll must be registered in the wineprefix.
For both 32 and 64-bit wine do: For both 32 and 64-bit wine do:


```
```sh
regsvr32 wineasio.dll regsvr32 wineasio.dll


``` ```
@@ -50,14 +50,14 @@ On a 64-bit system with wine supporting both 32 and 64-bit applications,
regsrv32 will register the 32-bit driver in a 64-bit prefix, regsrv32 will register the 32-bit driver in a 64-bit prefix,
use the following command to register the 64-bit driver in a 64-bit wineprefix: use the following command to register the 64-bit driver in a 64-bit wineprefix:


```
wine64 regsvr32 wineaiso.dll
```sh
wine64 regsvr32 wineasio.dll
``` ```


regsvr32 registers the ASIO COM object in the default prefix `~/.wine`. regsvr32 registers the ASIO COM object in the default prefix `~/.wine`.
To use another prefix specify it explicitly, like: To use another prefix specify it explicitly, like:


```
```sh
env WINEPREFIX=~/asioapp regsvr32 wineasio.dll env WINEPREFIX=~/asioapp regsvr32 wineasio.dll
``` ```




Loading…
Cancel
Save