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

Function ThemedDialogBoxParam

src/Helpers.c:1843–1858  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1841}
1842
1843INT_PTR ThemedDialogBoxParam (
1844 HINSTANCE hInstance,
1845 LPCTSTR lpTemplate,
1846 HWND hWndParent,
1847 DLGPROC lpDialogFunc,
1848 LPARAM dwInitParam )
1849{
1850 INT_PTR ret;
1851 DLGTEMPLATE *pDlgTemplate;
1852 pDlgTemplate = LoadThemedDialogTemplate ( lpTemplate, hInstance );
1853 ret = DialogBoxIndirectParam ( hInstance, pDlgTemplate, hWndParent, lpDialogFunc, dwInitParam );
1854 if ( pDlgTemplate ) {
1855 LocalFree ( pDlgTemplate );
1856 }
1857 return ( ret );
1858}
1859
1860HWND CreateThemedDialogParam (
1861 HINSTANCE hInstance,

Callers 15

EditLinenumDlgFunction · 0.85
EditModifyLinesDlgFunction · 0.85
EditAlignDlgFunction · 0.85
EditEncloseSelectionDlgFunction · 0.85
EditInsertTagDlgFunction · 0.85
EditSortDlgFunction · 0.85
RunDlgFunction · 0.85
OpenWithDlgFunction · 0.85
FavoritesDlgFunction · 0.85
AddToFavDlgFunction · 0.85
FileMRUDlgFunction · 0.85
ChangeNotifyDlgFunction · 0.85

Calls 1

LoadThemedDialogTemplateFunction · 0.85

Tested by

no test coverage detected