Subversion Repositories filter_foundry

Rev

Rev 461 | Rev 476 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 461 Rev 471
Line 24... Line 24...
24
#include <Windows.h>
24
#include <Windows.h>
25
 
25
 
26
#define use_plugin_dll_sliders
26
#define use_plugin_dll_sliders
27
 
27
 
28
// PLUGIN.DLL Sliders
28
// PLUGIN.DLL Sliders
29
int RegisterSlider(HINSTANCE hInstanceDll, DWORD* MessageID);
29
BOOL RegisterSlider(HINSTANCE hInstanceDll, DWORD* MessageID);
30
int UnregisterSlider(HINSTANCE hInstanceDll);
30
BOOL UnRegisterSlider(HINSTANCE hInstanceDll);
31
int SetSliderRange(HWND hWnd, int nMin, int nMax);
31
int SetSliderRange(HWND hWnd, int nMin, int nMax);
32
int SetSliderPos(HWND hWnd, int nPos, BOOL bRepaint);
32
int SetSliderPos(HWND hWnd, int nPos, BOOL bRepaint);
33
int GetSliderPos(HWND hWnd, BOOL bPixelPosition);
33
int GetSliderPos(HWND hWnd, BOOL bPixelPosition);
34
 
34
 
35
// Misc utilities
35
// Misc utilities