Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
65adb88
Ignore /src/MPCTestAPI/.vs
DRSDavidSoft Jun 2, 2025
f98d5cf
Safe path handling
DRSDavidSoft Jun 2, 2025
4ea5d6a
Add simple error handling on process start
DRSDavidSoft Jun 2, 2025
d3c7f9e
Display unknown command code; Add missing CMD_DISCONNECT case
DRSDavidSoft Jun 2, 2025
51f70cb
Add missing CMD_NOTIFYSEEK case to GetMPCCommandName
DRSDavidSoft Jun 2, 2025
9cf034b
Update version to 1.0.2.0 and copyright year to 2025
DRSDavidSoft Jun 2, 2025
611d18e
Add CMD_VERSION handling and version retrieval command
DRSDavidSoft Jun 2, 2025
47c82bf
Add CMD_NOTIFYENDOFSTREAM to GetMPCCommandName
DRSDavidSoft Jun 2, 2025
0d5a239
Fix indentation for variable in HTML
DRSDavidSoft Jun 2, 2025
5d75694
Improve comment
DRSDavidSoft Jun 2, 2025
8ac3df0
Improve comments
DRSDavidSoft Jun 2, 2025
d1b5fce
Add API enum for retrieving volume; cleaned-up comments
DRSDavidSoft Jun 2, 2025
a59d5b8
Update version information
DRSDavidSoft Jun 2, 2025
a044a1a
Add API to send current volume
DRSDavidSoft Jun 2, 2025
7c08a3a
Use `GetVolume()` and `IsMuted()` instead of control's implementation…
DRSDavidSoft Jun 2, 2025
0646a42
Improved web interface
DRSDavidSoft Jun 2, 2025
c338485
Refactor process handling and add OnOK function
DRSDavidSoft Jun 2, 2025
eda3efc
fix: Use UNKNOWN directly in the Format string.
DRSDavidSoft Jun 3, 2025
808aa2b
fix: A single string can be used here.
DRSDavidSoft Jun 3, 2025
cc33aee
Optimized png filesize
DRSDavidSoft Jun 3, 2025
6544c02
Introduce new `CMD_SETVOLUME` API for volume and mute control
DRSDavidSoft Jun 3, 2025
86f9670
Merge branch 'clsid2:develop' into develop
DRSDavidSoft Jun 30, 2025
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
3 changes: 1 addition & 2 deletions src/MPCTestAPI/MPCTestAPIDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ LPCTSTR GetMPCCommandName(MPCAPI_COMMAND nCmd)
// Missing a COMMAND from MpcApi.h file
static CString strResult;
LPCTSTR pszName = nullptr;
pszName = _T("UNKNOWN");
strResult.Format(_T("%s (0x%08X)"), pszName, (unsigned int)nCmd);
strResult.Format(_T("%s (0x%08X)"), _T("UNKNOWN"), (unsigned int)nCmd);
return strResult;
}
}
Expand Down