Skip to content

Commit c3025c0

Browse files
committed
fix(logging): Add missing Windows.h include for WinSim build
- Added #include <Windows.h> to Logging_WinSim.c - Resolves undefined identifier errors: WINAPI, HANDLE, TRUE, FALSE - Fixes Windows API function declarations: CreateThread, SetEvent, etc.
1 parent 22d02e9 commit c3025c0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

FreeRTOS-Plus/Demo/Common/Logging/windows/Logging_WinSim.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
*/
3636

3737
/* Standard includes. */
38+
#include <windows.h>
3839
#include <stdio.h>
3940
#include <stdint.h>
4041
#include <stdarg.h>

0 commit comments

Comments
 (0)