Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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