mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
This way windows.h can be included if needed without a guard, and we have a place to stub out defines for other platforms if necessary.
8 lines
139 B
C
8 lines
139 B
C
#ifndef __PLATFORM_WINDOWS_H_
|
|
#define __PLATFORM_WINDOWS_H_
|
|
|
|
#if defined _WIN32
|
|
#include "icsneo/platform/windows/windows.h"
|
|
#endif
|
|
|
|
#endif |