mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +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
|