MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / DriveBox_Init

Function DriveBox_Init

src/Dlapi.c:1061–1074  ·  view source on GitHub ↗

============================================================================= DriveBox_Init() Initializes the drive box

Source from the content-addressed store, hash-verified

1059// Initializes the drive box
1060//
1061BOOL DriveBox_Init(HWND hwnd)
1062{
1063
1064 HIMAGELIST hil;
1065 SHFILEINFO shfi;
1066
1067 hil = (HIMAGELIST)SHGetFileInfo(L"C:\\",0,&shfi,sizeof(SHFILEINFO),
1068 SHGFI_SMALLICON | SHGFI_SYSICONINDEX);
1069 SendMessage(hwnd,CBEM_SETIMAGELIST,0,(LPARAM)hil);
1070 SendMessage(hwnd,CBEM_SETEXTENDEDSTYLE,CBES_EX_NOSIZELIMIT,CBES_EX_NOSIZELIMIT);
1071
1072 return TRUE;
1073
1074}
1075
1076
1077//=============================================================================

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected