mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-28 08:31:52 +08:00
11 lines
163 B
C
11 lines
163 B
C
#ifndef SYSTEM_H
|
|
#define SYSTEM_H
|
|
|
|
#ifdef _WIN32
|
|
#include "platform/win/win.h"
|
|
#endif
|
|
#ifdef __linux__
|
|
#include "platform/linux/linux.h"
|
|
#endif
|
|
|
|
#endif // SYSTEM_H
|