Skip to content

Commit e22038a

Browse files
author
mikeblome
committed
fixed some stray issues
1 parent fd6b0ce commit e22038a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/build/freelibrary-and-afxfreelibrary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.workload: ["cplusplus"]
1414
---
1515
# FreeLibrary and AfxFreeLibrary
1616

17-
Processes that explicitly link to a DLL call the [FreeLibrary](/windows/desktop/api/libloaderapi/nf-libloaderapi-freelibrary).aspx) function when the DLL module is no longer needed. This function decrements the module's reference count and, if the reference count is zero, unmaps it from the address space of the process.
17+
Processes that explicitly link to a DLL call the [FreeLibrary](/windows/desktop/api/libloaderapi/nf-libloaderapi-freelibrary) function when the DLL module is no longer needed. This function decrements the module's reference count and, if the reference count is zero, unmaps it from the address space of the process.
1818

1919
In an MFC application, use [AfxFreeLibrary](../mfc/reference/application-information-and-management.md#afxfreelibrary) instead of `FreeLibrary` to unload an MFC extension DLL. The interface (function prototype) for `AfxFreeLibrary` is the same as `FreeLibrary`.
2020

@@ -33,5 +33,5 @@ In an MFC application, use [AfxFreeLibrary](../mfc/reference/application-informa
3333
## See Also
3434

3535
[DLLs in Visual C++](../build/dlls-in-visual-cpp.md)<br/>
36-
[FreeLibrary](/windows/desktop/api/libloaderapi/nf-libloaderapi-freelibrary).aspx)
36+
[FreeLibrary](/windows/desktop/api/libloaderapi/nf-libloaderapi-freelibrary)
3737
[AfxFreeLibrary](../mfc/reference/application-information-and-management.md#afxfreelibrary)

docs/mfc/reference/canimationcontroller-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ Should return TRUE if storyboard owned by pGroupNew has priority. Should return
774774

775775
### Remarks
776776

777-
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_CANCEL. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about Conflict Management (https://msdn.microsoft.com/library/dd371759(VS.85).aspx).
777+
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_CANCEL. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about [Conflict Management](https://msdn.microsoft.com/library/dd371759).
778778

779779
## <a name="onhasprioritycompress"></a> CAnimationController::OnHasPriorityCompress
780780

@@ -804,7 +804,7 @@ Should return TRUE if storyboard owned by pGroupNew has priority. Should return
804804

805805
### Remarks
806806

807-
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_COMPRESS. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about Conflict Management (https://msdn.microsoft.com/library/dd371759(VS.85).aspx).
807+
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_COMPRESS. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about [Conflict Management](https://msdn.microsoft.com/library/dd371759).
808808

809809
## <a name="onhaspriorityconclude"></a> CAnimationController::OnHasPriorityConclude
810810

@@ -834,7 +834,7 @@ Should return TRUE if storyboard owned by pGroupNew has priority. Should return
834834

835835
### Remarks
836836

837-
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_CONCLUDE. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about Conflict Management (https://msdn.microsoft.com/library/dd371759(VS.85).aspx).
837+
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_CONCLUDE. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about [Conflict Management](https://msdn.microsoft.com/library/dd371759).
838838

839839
## <a name="onhasprioritytrim"></a> CAnimationController::OnHasPriorityTrim
840840

@@ -864,7 +864,7 @@ Should return TRUE if storyboard owned by pGroupNew has priority. Should return
864864

865865
### Remarks
866866

867-
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_TRIM. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about Conflict Management (https://msdn.microsoft.com/library/dd371759(VS.85).aspx).
867+
This method is called if you enable priority comparison events using CAnimationController::EnablePriorityComparisonHandler and specify UI_ANIMATION_PHT_TRIM. It can be overridden in a derived class to take application-specific actions. Read Windows Animation API documentation for more information about [Conflict Management](https://msdn.microsoft.com/library/dd371759).
868868

869869
## <a name="onstoryboardstatuschanged"></a> CAnimationController::OnStoryboardStatusChanged
870870

0 commit comments

Comments
 (0)