1 /* 2 * Folder Options 3 * 4 * Copyright 2007 Johannes Anderwald <johannes.anderwald@reactos.org> 5 * Copyright 2016-2018 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com> 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public 9 * License as published by the Free Software Foundation; either 10 * version 2.1 of the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 20 */ 21 22 // IDD_FOLDER_OPTIONS_GENERAL 23 INT_PTR 24 CALLBACK 25 FolderOptionsGeneralDlg( 26 HWND hwndDlg, 27 UINT uMsg, 28 WPARAM wParam, 29 LPARAM lParam); 30 31 // IDD_FOLDER_OPTIONS_VIEW 32 INT_PTR CALLBACK 33 FolderOptionsViewDlg( 34 HWND hwndDlg, 35 UINT uMsg, 36 WPARAM wParam, 37 LPARAM lParam); 38 39 // IDD_FOLDER_OPTIONS_FILETYPES 40 INT_PTR CALLBACK 41 FolderOptionsFileTypesDlg( 42 HWND hwndDlg, 43 UINT uMsg, 44 WPARAM wParam, 45 LPARAM lParam); 46 47 HBITMAP Create24BppBitmap(HDC hDC, INT cx, INT cy); 48 HBITMAP BitmapFromIcon(HICON hIcon, INT cx, INT cy); 49 HBITMAP CreateCheckImage(HDC hDC, BOOL bCheck, BOOL bEnabled = TRUE); 50 HBITMAP CreateCheckMask(HDC hDC); 51 HBITMAP CreateRadioImage(HDC hDC, BOOL bCheck, BOOL bEnabled = TRUE); 52 HBITMAP CreateRadioMask(HDC hDC); 53 54 extern LPCWSTR g_pszShell32; 55 extern LPCWSTR g_pszSpace; 56