This particular Windows API was first available in Vista (client) and Windows Server 2008 (server).
Microsoft has been making a series of changes (improvements?) to Windows over multiple releases to provide applications with the ability to provide an improved user experience when multiple monitors with different resolutions or switching between devices where different display resolutions are involved. There have even been new DPI-related API functions added to Windows 10 since its initial release.
If your app is going to attempt to utilize these new DPI-related API functions, you'll need to determine the minimum O/S requirement. Here is a link to the definitive source for Windows API documentation.
https://docs.microsoft.com/en-us/windows/win32/apiindex/windows-api-list
Search for a particular API using the search field on the left side. When you call up the documentation on a particular API function, the minimum O/S requirements are listed at the end of the web page.
Here's the URL for the API function you've asked about:
https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-isprocessdpiaware
HTH, John