mirror of
https://github.com/libretro/Play-.git
synced 2025-02-26 14:35:38 +00:00
Win32 cleanup build fix.
This commit is contained in:
parent
7728aa6c8a
commit
89d4d36a78
@ -330,7 +330,7 @@ CSoundHandler* CMainWindow::CreateHandler(const TCHAR* libraryPath)
|
||||
return result;
|
||||
}
|
||||
|
||||
long CMainWindow::OnWndProc(unsigned int msg, WPARAM wParam, LPARAM lParam)
|
||||
LRESULT CMainWindow::OnWndProc(unsigned int msg, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
if(m_taskBarList && (msg == m_taskBarList->GetCreatedMessage()))
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ public:
|
||||
void Run();
|
||||
|
||||
protected:
|
||||
long OnWndProc(unsigned int, WPARAM, LPARAM) override;
|
||||
LRESULT OnWndProc(unsigned int, WPARAM, LPARAM) override;
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnTimer(WPARAM) override;
|
||||
|
@ -103,7 +103,7 @@ long CPlaylistPanel::OnCommand(unsigned short cmd, unsigned short id, HWND sende
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
long CPlaylistPanel::OnNotify(WPARAM wParam, NMHDR* hdr)
|
||||
LRESULT CPlaylistPanel::OnNotify(WPARAM wParam, NMHDR* hdr)
|
||||
{
|
||||
if(CWindow::IsNotifySource(m_playlistView, hdr))
|
||||
{
|
||||
|
@ -30,7 +30,7 @@ public:
|
||||
|
||||
protected:
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
|
||||
private:
|
||||
|
@ -135,7 +135,7 @@ long CSpuRegView::OnKeyDown(WPARAM keyId, LPARAM)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CSpuRegView::OnGetDlgCode(WPARAM, LPARAM)
|
||||
LRESULT CSpuRegView::OnGetDlgCode(WPARAM, LPARAM)
|
||||
{
|
||||
return DLGC_WANTARROWS;
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ protected:
|
||||
virtual long OnVScroll(unsigned int, unsigned int) override;
|
||||
virtual long OnMouseWheel(int, int, short) override;
|
||||
virtual long OnKeyDown(WPARAM, LPARAM) override;
|
||||
virtual long OnGetDlgCode(WPARAM, LPARAM) override;
|
||||
virtual LRESULT OnGetDlgCode(WPARAM, LPARAM) override;
|
||||
|
||||
virtual void Refresh() override;
|
||||
virtual void OnDeviceResetting() override;
|
||||
|
Loading…
x
Reference in New Issue
Block a user