create group files, comment out some desktop stuff for debugging

This commit is contained in:
freedom
2023-08-01 01:35:14 -06:00
parent 3e9c6623c2
commit 62c5dd95bf
6 changed files with 44 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ HWND CreateListView(HWND hWndParent, RECT rc)
{
HWND hWndListView;
LVITEM lviTestItem;
WCHAR szTestItem = L"Test Item";
//WCHAR szTestItem[20] = L"Test Item\0";
// Create the ListView
hWndListView = CreateWindowEx(WS_EX_LEFT, WC_LISTVIEW, L"",
@@ -192,7 +192,7 @@ HWND CreateListView(HWND hWndParent, RECT rc)
lviTestItem.iSubItem = 0;
lviTestItem.state = 0;
lviTestItem.stateMask = 0;
lviTestItem.pszText = &szTestItem;
//lviTestItem.pszText = &szTestItem;
lviTestItem.cchTextMax = MAXTITLELEN;
// lviTestItem.iImage = 1;