mirror of
https://github.com/libretro/Play-.git
synced 2025-02-26 06:25:30 +00:00
Win32 cleanup build fix.
This commit is contained in:
parent
84044a95ba
commit
52925f7ed6
@ -63,7 +63,7 @@ long CCallStackWnd::OnSysCommand(unsigned int nCmd, LPARAM lParam)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CCallStackWnd::OnNotify(WPARAM wParam, NMHDR* pHDR)
|
||||
LRESULT CCallStackWnd::OnNotify(WPARAM wParam, NMHDR* pHDR)
|
||||
{
|
||||
switch(pHDR->code)
|
||||
{
|
||||
|
@ -21,7 +21,7 @@ public:
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnSysCommand(unsigned int, LPARAM) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
void RefreshLayout();
|
||||
|
@ -752,7 +752,7 @@ long CDebugger::OnSysCommand(unsigned int nCmd, LPARAM lParam)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CDebugger::OnWndProc(unsigned int nMsg, WPARAM wParam, LPARAM lParam)
|
||||
LRESULT CDebugger::OnWndProc(unsigned int nMsg, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
switch(nMsg)
|
||||
{
|
||||
|
@ -19,7 +19,7 @@ public:
|
||||
protected:
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnSysCommand(unsigned int, LPARAM) override;
|
||||
long OnWndProc(unsigned int, WPARAM, LPARAM) override;
|
||||
LRESULT OnWndProc(unsigned int, WPARAM, LPARAM) override;
|
||||
|
||||
private:
|
||||
enum DEBUGVIEW
|
||||
|
@ -90,7 +90,7 @@ long CELFSymbolView::OnSize(unsigned int nType, unsigned int nWidth, unsigned in
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
long CELFSymbolView::OnNotify(WPARAM wParam, NMHDR* hdr)
|
||||
LRESULT CELFSymbolView::OnNotify(WPARAM wParam, NMHDR* hdr)
|
||||
{
|
||||
if(IsNotifySource(m_listView, hdr))
|
||||
{
|
||||
|
@ -36,7 +36,7 @@ private:
|
||||
};
|
||||
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
static int ItemNameComparer(const ITEM&, const ITEM&);
|
||||
static int ItemAddressComparer(const ITEM&, const ITEM&);
|
||||
|
@ -141,7 +141,7 @@ long CFrameDebugger::OnCommand(unsigned short id, unsigned short msg, HWND hwndF
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CFrameDebugger::OnNotify(WPARAM param, NMHDR* header)
|
||||
LRESULT CFrameDebugger::OnNotify(WPARAM param, NMHDR* header)
|
||||
{
|
||||
if(!IsWindowEnabled(m_hWnd))
|
||||
{
|
||||
|
@ -26,7 +26,7 @@ public:
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
long OnSysCommand(unsigned int, LPARAM) override;
|
||||
|
||||
private:
|
||||
|
@ -242,7 +242,7 @@ long CGsContextView::OnCommand(unsigned short, unsigned short, HWND hwndFrom)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CGsContextView::OnNotify(WPARAM wParam, NMHDR* hdr)
|
||||
LRESULT CGsContextView::OnNotify(WPARAM wParam, NMHDR* hdr)
|
||||
{
|
||||
if(CWindow::IsNotifySource(m_bufferSelectionTab.get(), hdr))
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ public:
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
typedef std::array<uint32, 256> ColorArray;
|
||||
|
@ -134,7 +134,7 @@ long CGsPacketListView::OnCommand(unsigned short, unsigned short, HWND senderWnd
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CGsPacketListView::OnNotify(WPARAM param, NMHDR* header)
|
||||
LRESULT CGsPacketListView::OnNotify(WPARAM param, NMHDR* header)
|
||||
{
|
||||
if(CWindow::IsNotifySource(m_packetsTreeView.get(), header))
|
||||
{
|
||||
|
@ -31,7 +31,7 @@ public:
|
||||
protected:
|
||||
virtual long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
virtual long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
virtual long OnNotify(WPARAM, NMHDR*) override;
|
||||
virtual LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
struct PACKETINFO
|
||||
|
@ -66,7 +66,7 @@ long CTabHost::OnSize(unsigned int, unsigned int, unsigned int)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CTabHost::OnNotify(WPARAM param, NMHDR* header)
|
||||
LRESULT CTabHost::OnNotify(WPARAM param, NMHDR* header)
|
||||
{
|
||||
if(CWindow::IsNotifySource(m_tab.get(), header))
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ public:
|
||||
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
typedef std::vector<Framework::Win32::CWindow*> TabItemArray;
|
||||
|
@ -82,7 +82,7 @@ long CFunctionsView::OnSize(unsigned int nX, unsigned int nY, unsigned int nType
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CFunctionsView::OnNotify(WPARAM wParam, NMHDR* pH)
|
||||
LRESULT CFunctionsView::OnNotify(WPARAM wParam, NMHDR* pH)
|
||||
{
|
||||
if(pH->hwndFrom == m_pList->m_hWnd)
|
||||
{
|
||||
|
@ -32,7 +32,7 @@ public:
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
long OnSysCommand(unsigned int, LPARAM) override;
|
||||
|
||||
private:
|
||||
|
@ -56,7 +56,7 @@ void COptionWnd<T>::OnItemAppearing(HTREEITEM item)
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
long COptionWnd<T>::OnNotify(WPARAM wParam, NMHDR* pH)
|
||||
LRESULT COptionWnd<T>::OnNotify(WPARAM wParam, NMHDR* pH)
|
||||
{
|
||||
if(m_pTreeView != NULL)
|
||||
{
|
||||
|
@ -16,7 +16,7 @@ public:
|
||||
protected:
|
||||
virtual void OnItemAppearing(HTREEITEM);
|
||||
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
|
||||
Framework::Win32::CWindow* GetContainer();
|
||||
|
@ -106,7 +106,7 @@ long CControllerSettingsWnd::OnCommand(unsigned short id, unsigned short cmd, HW
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CControllerSettingsWnd::OnNotify(WPARAM param, NMHDR* header)
|
||||
LRESULT CControllerSettingsWnd::OnNotify(WPARAM param, NMHDR* header)
|
||||
{
|
||||
if(m_bindingList && m_bindingList->m_hWnd == header->hwndFrom)
|
||||
{
|
||||
|
@ -18,7 +18,7 @@ namespace PH_DirectInput
|
||||
|
||||
protected:
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
long OnTimer(WPARAM) override;
|
||||
|
||||
private:
|
||||
|
@ -77,7 +77,7 @@ long CRegViewWnd::OnSysCommand(unsigned int cmd, LPARAM)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CRegViewWnd::OnNotify(WPARAM param, NMHDR* hdr)
|
||||
LRESULT CRegViewWnd::OnNotify(WPARAM param, NMHDR* hdr)
|
||||
{
|
||||
if(CWindow::IsNotifySource(&m_tabs, hdr))
|
||||
{
|
||||
|
@ -15,7 +15,7 @@ public:
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnSysCommand(unsigned int, LPARAM) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
enum
|
||||
|
@ -125,7 +125,7 @@ long CThreadsViewWnd::OnSysCommand(unsigned int nCmd, LPARAM lParam)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CThreadsViewWnd::OnNotify(WPARAM wParam, NMHDR* pHdr)
|
||||
LRESULT CThreadsViewWnd::OnNotify(WPARAM wParam, NMHDR* pHdr)
|
||||
{
|
||||
if(CWindow::IsNotifySource(&m_listView, pHdr))
|
||||
{
|
||||
|
@ -22,7 +22,7 @@ public:
|
||||
protected:
|
||||
long OnSize(unsigned int, unsigned int, unsigned int) override;
|
||||
long OnSysCommand(unsigned int, LPARAM) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
void CreateColumns();
|
||||
|
@ -95,7 +95,7 @@ long CVFSManagerWnd::OnCommand(unsigned short nID, unsigned short nCmd, HWND hSe
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
long CVFSManagerWnd::OnNotify(WPARAM wParam, NMHDR* pHDR)
|
||||
LRESULT CVFSManagerWnd::OnNotify(WPARAM wParam, NMHDR* pHDR)
|
||||
{
|
||||
if(pHDR->hwndFrom == m_pList->m_hWnd)
|
||||
{
|
||||
|
@ -16,7 +16,7 @@ public:
|
||||
|
||||
protected:
|
||||
long OnCommand(unsigned short, unsigned short, HWND) override;
|
||||
long OnNotify(WPARAM, NMHDR*) override;
|
||||
LRESULT OnNotify(WPARAM, NMHDR*) override;
|
||||
|
||||
private:
|
||||
class CDevice
|
||||
|
@ -112,7 +112,7 @@ long CVirtualPadWindow::OnMouseMove(WPARAM, int x, int y)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
long CVirtualPadWindow::OnMouseActivate(WPARAM wParam, LPARAM lParam)
|
||||
LRESULT CVirtualPadWindow::OnMouseActivate(WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
return MA_NOACTIVATE;
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ protected:
|
||||
long OnLeftButtonDown(int, int) override;
|
||||
long OnLeftButtonUp(int, int) override;
|
||||
long OnMouseMove(WPARAM, int, int) override;
|
||||
long OnMouseActivate(WPARAM, LPARAM) override;
|
||||
LRESULT OnMouseActivate(WPARAM, LPARAM) override;
|
||||
|
||||
private:
|
||||
typedef std::shared_ptr<CVirtualPadItem> ItemPtr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user