Skip to content

Commit

Permalink
Add WinMergePluginBase.h (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdottaka committed May 16, 2021
1 parent 1049366 commit d7d56b0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Src/WinMergePluginBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,13 @@ class WinMergePluginBase : public IDispatch, public ITypeInfo
hr = PackFile(fileSrc, fileDst, pbChanged, subcode, pbSuccess);
break;
}
case DISPID_IsFolder:
{
BSTR file = pDispParams->rgvarg[0].bstrVal;
VARIANT_BOOL* pbSuccess = &pVarResult->boolVal;
hr = IsFolder(file, pbSuccess);
break;
}
case DISPID_UnpackFolder:
{
BSTR fileSrc = pDispParams->rgvarg[3].bstrVal;
Expand Down

0 comments on commit d7d56b0

Please sign in to comment.