/* * PROJECT: ReactOS Font Shell Extension * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) * PURPOSE: pidl handling * COPYRIGHT: Copyright 2019 Mark Jansen */ #pragma once #include struct FontPidlEntry { WORD cb; WORD Magic; ULONG Index; // Informative only, used for sorting WCHAR Name[1]; }; #include LPITEMIDLIST _ILCreate(LPCWSTR lpString, ULONG Index); const FontPidlEntry* _FontFromIL(LPCITEMIDLIST pidl);