You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
condition : Windows SDK (10.0.26100)
Building the ClrPhLib dependency generates error :
error C2011: '_FILE_STAT_INFORMATION': 'struct' type redefinition
Encapsulating the stryct defintion in file ntioapi.h (near line 701) as in:
#if !defined(NTDDI_WIN11_GE) || (NTDDI_VERSION < NTDDI_WIN11_GE)
typedef struct _FILE_STAT_INFORMATION
{
...........
} FILE_STAT_INFORMATION, *PFILE_STAT_INFORMATION;
#endif
resolves the issue.
Credit goes to (winsiderss/systeminformer#2072)
The text was updated successfully, but these errors were encountered:
condition : Windows SDK (10.0.26100)
Building the ClrPhLib dependency generates error :
error C2011: '_FILE_STAT_INFORMATION': 'struct' type redefinition
Encapsulating the stryct defintion in file ntioapi.h (near line 701) as in:
#if !defined(NTDDI_WIN11_GE) || (NTDDI_VERSION < NTDDI_WIN11_GE)
typedef struct _FILE_STAT_INFORMATION
{
...........
} FILE_STAT_INFORMATION, *PFILE_STAT_INFORMATION;
#endif
resolves the issue.
Credit goes to (winsiderss/systeminformer#2072)
The text was updated successfully, but these errors were encountered: