mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 23:45:45 -04:00
Initial community commit
This commit is contained in:
22
Src/Plugins/Library/ml_devices/managerView.h
Normal file
22
Src/Plugins/Library/ml_devices/managerView.h
Normal file
@ -0,0 +1,22 @@
|
||||
#ifndef _NULLSOFT_WINAMP_ML_DEVICES_MANAGER_VIEW_HEADER
|
||||
#define _NULLSOFT_WINAMP_ML_DEVICES_MANAGER_VIEW_HEADER
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include <wtypes.h>
|
||||
|
||||
HWND ManagerView_CreateWindow(HWND parentWindow);
|
||||
|
||||
#define MANAGERVIEW_WM_FIRST (WM_USER + 10)
|
||||
|
||||
#define MANAGERVIEW_WM_ZOOMSLIDER (MANAGERVIEW_WM_FIRST + 0)
|
||||
#define MANAGERVIEW_GET_ZOOM_SLIDER(/*HWND*/ _hwnd)\
|
||||
((HWND)SendMessageW((_hwnd), MANAGERVIEW_WM_ZOOMSLIDER, 0, 0L))
|
||||
|
||||
#define MANAGERVIEW_WM_STATUSBAR (MANAGERVIEW_WM_FIRST + 1)
|
||||
#define MANAGERVIEW_GET_STATUS_BAR(/*HWND*/ _hwnd)\
|
||||
((HWND)SendMessageW((_hwnd), MANAGERVIEW_WM_STATUSBAR, 0, 0L))
|
||||
|
||||
#endif //_NULLSOFT_WINAMP_ML_DEVICES_MANAGER_VIEW_HEADER
|
Reference in New Issue
Block a user