Etaash Mathamsetty (@etaash.mathamsetty) commented about include/wldp.h:
WLDP_HOST_ID_MAX } WLDP_HOST_ID;
+typedef enum WLDP_WINDOWS_LOCKDOWN_MODE +{
- WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED,
- WLDP_WINDOWS_LOCKDOWN_MODE_TRIAL,
- WLDP_WINDOWS_LOCKDOWN_MODE_LOCKED,
- WLDP_WINDOWS_LOCKDOWN_MODE_MAX
+} WLDP_WINDOWS_LOCKDOWN_MODE;
This can't work, you are redefining WLDP_WINDOWS_LOCKDOWN_MODE. Instead use _WLDP_WINDOWS_LOCKDOWN_MODE in the typdef enum (line 35)