mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-26 07:13:24 +03:00
15 lines
284 B
C
15 lines
284 B
C
|
/**
|
||
|
* Tae Won Ha - http://taewon.de - @hataewon
|
||
|
* See LICENSE
|
||
|
*/
|
||
|
|
||
|
#ifndef NVIMSERVER_FOUNDATION_SHIM_H
|
||
|
#define NVIMSERVER_FOUNDATION_SHIM_H
|
||
|
|
||
|
#include <CoreFoundation/CoreFoundation.h>
|
||
|
|
||
|
#define NSInteger long
|
||
|
#define NSUInteger unsigned long
|
||
|
|
||
|
#endif // NVIMSERVER_FOUNDATION_SHIM_H
|