mirror of
https://github.com/EnderIce2/rpc-bridge.git
synced 2025-05-27 15:04:34 +00:00
14 lines
162 B
C
14 lines
162 B
C
#ifndef _BRIDGE_H
|
|
#define _BRIDGE_H
|
|
|
|
#include <windows.h>
|
|
|
|
typedef struct _OS_INFO
|
|
{
|
|
BOOL IsLinux;
|
|
BOOL IsDarwin;
|
|
BOOL IsWine;
|
|
} OS_INFO;
|
|
|
|
#endif // _BRIDGE_H
|