latest SDK

This commit is contained in:
2021-12-14 00:28:25 -07:00
commit 68b10d413b
492 changed files with 80542 additions and 0 deletions

15
libPPUI/CHeaderCtrlEx.h Normal file
View 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();
};