Mercurial > wgsdk
annotate README.md @ 6:8ce85aee15c0
update tags
author | convert-repo |
---|---|
date | Sat, 17 Dec 2022 01:48:13 +0000 |
parents | 3dee72fffe97 |
children | 07f0e2f43204 |
rev | line source |
---|---|
0 | 1 # Discord GameSDK Winamp Plugin |
2 | |
1 | 3 This plugin is largely based off of clandrew's [wdrp](https://github.com/clandrew/wdrp). You can look at the screenshots in that repository, it looks pretty much identical. |
4 | |
5 ### Installing | |
6 You'll want to put gen_DiscordGameSDK.dll into Plugins directory, and discord_game_sdk into the Winamp directory. | |
7 | |
8 ### Configuration | |
9 The config file is located at `%AppData%\Roaming\Winamp\Plugins\wgsdk\config.txt`. It's pretty straightforward how to edit it. | |
10 | |
11 ### Differences to wdrp | |
12 * uses GameSDK (obviously) | |
13 * written in C instead of C++ | |
5
3dee72fffe97
Update README.md
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
14 * uses a Makefile instead of Visual Studio |
1 | 15 * several other coding differences (e.g. there's no classes in C) |
16 | |
17 ### How to compile | |
18 (Disclaimer: This guide is written for Windows users.) | |
19 | |
20 First of all, you want to install the [Winamp SDK](http://forums.winamp.com/showthread.php?t=252090). Now you just need the [Discord GameSDK](https://discord.com/developers/docs/game-sdk/sdk-starter-guide#step-1-get-the-thing). | |
21 | |
22 Then, make sure the repository directory structure looks like this: | |
23 | |
24 ``` | |
25 C:. | |
26 ├───discord_game_sdk | |
27 │ ├───c | |
28 │ ├───cpp | |
29 │ └───... | |
30 └───src | |
31 └───include | |
32 ``` | |
33 | |
34 Now, just run `make`. If you have all the build tools properly installed it should work. |