Skip to content

Commit

Permalink
Add precision about windows dll's destination (#847)
Browse files Browse the repository at this point in the history
Fix #695.
  • Loading branch information
ImperatorS79 committed Jan 29, 2019
1 parent dd3145f commit a67408c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/_docs/Develop/verbs.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ It is also possible to pass additional parameters to the `extract()`, e.g.
```

If you extract many files, don't forget to add a progress bar like it is done for [d3dx9](https://github.com/PhoenicisOrg/scripts/blob/master/Engines/Wine/Verbs/d3dx9/script.js).
### Copying DLL's to `C:\windows\sys*`
On Windows 32 bits, 32 bits dll's go to `C:\windows\system32`.
On Windows 64 bits, 32 bits dll's go to `C:\windows\syswow64` and 64 bits dll's go to system32.

This is already handled inside the engine implementation if you use the functions `wine.system64directory()` for 64 bits dll's and bits and `wine.system32directory` for 32 bits dll's inside your scripts.
### DLL Overrides
```javascript
this.overrideDLL()
Expand Down

0 comments on commit a67408c

Please sign in to comment.