[K/N][KT-39120] Build platform libraries with -fmodules

Merge-request: KT-MR-8175
Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
Vladimir Sukharev
2023-01-13 07:33:42 +00:00
committed by Space Team
parent d85b23ebb9
commit 45de88abae
35 changed files with 302 additions and 58 deletions
@@ -0,0 +1,15 @@
#ifndef _IOKIT_IOHIDLIB_H
#define _IOKIT_IOHIDLIB_H
typedef struct IOGPoint {
int x;
} IOGPoint;
typedef enum {
NX_OneButton,
} NXMouseButton;
extern int IOHIDPostEvent( IOGPoint location );
extern int IOHIDGetButtonEventNum( NXMouseButton button );
#endif /* ! _IOKIT_IOHIDLIB_H */
@@ -0,0 +1,8 @@
framework module explicitpod1 {
export *
explicit module explicitSubmodule {
header "explicitSubmodule.h"
export *
}
}