latest SDK
This commit is contained in:
15
libPPUI/CHeaderCtrlEx.h
Normal file
15
libPPUI/CHeaderCtrlEx.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
class CHeaderCtrlEx : public CHeaderCtrl {
|
||||
public:
|
||||
CHeaderCtrlEx(HWND wnd = NULL) : CHeaderCtrl(wnd) {}
|
||||
CHeaderCtrlEx const & operator=(HWND wnd) { m_hWnd = wnd; return *this; }
|
||||
|
||||
// Column sort marker operations
|
||||
// If they appear to have no effect, you're probably missing Common Controls 6 manifest, see link-CommonControls6.h
|
||||
DWORD GetItemFormat(int iItem);
|
||||
void SetItemFormat(int iItem, DWORD flags);
|
||||
void SetItemSort(int iItem, int direction);
|
||||
void SetSingleItemSort(int iItem, int direction);
|
||||
void ClearSort();
|
||||
};
|
||||
Reference in New Issue
Block a user