mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
23 lines
532 B
C
23 lines
532 B
C
|
/**
|
||
|
* Tae Won Ha - http://taewon.de - @hataewon
|
||
|
* See LICENSE
|
||
|
*/
|
||
|
|
||
|
#ifndef NVIMSERVER_SERVER_H
|
||
|
#define NVIMSERVER_SERVER_H
|
||
|
|
||
|
#include <CoreFoundation/CoreFoundation.h>
|
||
|
#include "server_shared_types.h"
|
||
|
|
||
|
void server_set_nvim_args(int argc, const char **const args);
|
||
|
|
||
|
void server_init_local_port(const char *name);
|
||
|
void server_destroy_local_port(void);
|
||
|
|
||
|
void server_init_remote_port(const char *name);
|
||
|
void server_destroy_remote_port(void);
|
||
|
|
||
|
void server_send_msg(NvimServerMsgId msgId, CFDataRef data);
|
||
|
|
||
|
#endif // NVIMSERVER_SERVER_H
|