Skip to content

Commit

Permalink
Minor SAL fix (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
walbourn authored Aug 15, 2024
1 parent 1c78c7d commit 059ce81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ScreenGrab/ScreenGrab11.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ namespace DirectX
_In_ REFGUID guidContainerFormat,
_In_z_ const wchar_t* fileName,
_In_opt_ const GUID* targetFormat = nullptr,
_In_opt_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr,
_In_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr,
_In_ bool forceSRGB = false);
}
2 changes: 1 addition & 1 deletion ScreenGrab/ScreenGrab12.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ namespace DirectX
D3D12_RESOURCE_STATES beforeState = D3D12_RESOURCE_STATE_RENDER_TARGET,
D3D12_RESOURCE_STATES afterState = D3D12_RESOURCE_STATE_RENDER_TARGET,
_In_opt_ const GUID* targetFormat = nullptr,
_In_opt_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr,
_In_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr,
bool forceSRGB = false);
#endif
}
2 changes: 1 addition & 1 deletion ScreenGrab/ScreenGrab9.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ namespace DirectX
_In_ REFGUID guidContainerFormat,
_In_z_ const wchar_t* fileName,
_In_opt_ const GUID* targetFormat = nullptr,
_In_opt_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr);
_In_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr);
}

0 comments on commit 059ce81

Please sign in to comment.