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

Function AddToFavDlg

src/Dialogs.c:719–740  ·  view source on GitHub ↗

============================================================================= AddToFavDlg()

Source from the content-addressed store, hash-verified

717// AddToFavDlg()
718//
719BOOL AddToFavDlg ( HWND hwnd, LPCWSTR lpszName, LPCWSTR lpszTarget )
720{
721 INT_PTR iResult;
722 WCHAR pszName[MAX_PATH];
723 lstrcpy ( pszName, lpszName );
724 iResult = ThemedDialogBoxParam (
725 g_hInstance,
726 MAKEINTRESOURCE ( IDD_ADDTOFAV ),
727 hwnd,
728 AddToFavDlgProc, ( LPARAM ) pszName );
729 if ( iResult == IDOK ) {
730 if ( !PathCreateFavLnk ( pszName, lpszTarget, tchFavoritesDir ) ) {
731 MsgBox ( MBWARN, IDS_FAV_FAILURE );
732 return FALSE;
733 } else {
734 MsgBox ( MBINFO, IDS_FAV_SUCCESS );
735 return TRUE;
736 }
737 } else {
738 return FALSE;
739 }
740}
741
742
743//=============================================================================

Callers 1

MsgCommandFunction · 0.85

Calls 3

ThemedDialogBoxParamFunction · 0.85
PathCreateFavLnkFunction · 0.85
MsgBoxFunction · 0.85

Tested by

no test coverage detected