Rename from os_win_conpty.{c,h} to pty_conpty_win.{c,h}

This commit is contained in:
erw7
2019-11-16 13:50:52 +09:00
committed by Björn Linse
parent 2c8016c704
commit 8f91d709b0
7 changed files with 11 additions and 11 deletions

View File

@@ -134,7 +134,7 @@ foreach(sfile ${NVIM_SOURCES})
if(NOT WIN32 AND ${f} MATCHES "^(pty_process_win.c)$") if(NOT WIN32 AND ${f} MATCHES "^(pty_process_win.c)$")
list(APPEND to_remove ${sfile}) list(APPEND to_remove ${sfile})
endif() endif()
if(NOT WIN32 AND ${f} MATCHES "^(os_win_conpty.c)$") if(NOT WIN32 AND ${f} MATCHES "^(pty_conpty_win.c)$")
list(APPEND to_remove ${sfile}) list(APPEND to_remove ${sfile})
endif() endif()
if(NOT WIN32 AND ${f} MATCHES "^(os_win_console.c)$") if(NOT WIN32 AND ${f} MATCHES "^(os_win_console.c)$")
@@ -643,7 +643,7 @@ endfunction()
set(NO_SINGLE_CHECK_HEADERS set(NO_SINGLE_CHECK_HEADERS
os/win_defs.h os/win_defs.h
os/pty_process_win.h os/pty_process_win.h
os/os_win_conpty.h os/pty_conpty_win.h
os/os_win_console.h os/os_win_console.h
) )
foreach(hfile ${NVIM_HEADERS}) foreach(hfile ${NVIM_HEADERS})

View File

@@ -12,7 +12,7 @@
#include "nvim/msgpack_rpc/server.h" #include "nvim/msgpack_rpc/server.h"
#include "nvim/os/shell.h" #include "nvim/os/shell.h"
#ifdef WIN32 #ifdef WIN32
# include "nvim/os/os_win_conpty.h" # include "nvim/os/pty_conpty_win.h"
# include "nvim/os/os_win_console.h" # include "nvim/os/os_win_console.h"
#endif #endif
#include "nvim/path.h" #include "nvim/path.h"

View File

@@ -77,7 +77,7 @@
#include "nvim/window.h" #include "nvim/window.h"
#include "nvim/os/os.h" #include "nvim/os/os.h"
#ifdef WIN32 #ifdef WIN32
# include "nvim/os/os_win_conpty.h" # include "nvim/os/pty_conpty_win.h"
#endif #endif
#include "nvim/api/private/helpers.h" #include "nvim/api/private/helpers.h"
#include "nvim/os/input.h" #include "nvim/os/input.h"

View File

@@ -5,7 +5,7 @@
#include "nvim/vim.h" #include "nvim/vim.h"
#include "nvim/os/os.h" #include "nvim/os/os.h"
#include "nvim/os/os_win_conpty.h" #include "nvim/os/pty_conpty_win.h"
#ifndef EXTENDED_STARTUPINFO_PRESENT #ifndef EXTENDED_STARTUPINFO_PRESENT
# define EXTENDED_STARTUPINFO_PRESENT 0x00080000 # define EXTENDED_STARTUPINFO_PRESENT 0x00080000

View File

@@ -1,5 +1,5 @@
#ifndef NVIM_OS_OS_WIN_CONPTY_H #ifndef NVIM_OS_PTY_CONPTY_WIN_H
#define NVIM_OS_OS_WIN_CONPTY_H #define NVIM_OS_PTY_CONPTY_WIN_H
#ifndef HPCON #ifndef HPCON
# define HPCON VOID * # define HPCON VOID *
@@ -16,7 +16,7 @@ typedef struct conpty {
} conpty_t; } conpty_t;
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/os_win_conpty.h.generated.h" # include "os/pty_conpty_win.h.generated.h"
#endif #endif
#endif // NVIM_OS_OS_WIN_CONPTY_H #endif // NVIM_OS_PTY_CONPTY_WIN_H

View File

@@ -12,7 +12,7 @@
#include "nvim/memory.h" #include "nvim/memory.h"
#include "nvim/mbyte.h" // for utf8_to_utf16, utf16_to_utf8 #include "nvim/mbyte.h" // for utf8_to_utf16, utf16_to_utf8
#include "nvim/os/pty_process_win.h" #include "nvim/os/pty_process_win.h"
#include "nvim/os/os_win_conpty.h" #include "nvim/os/pty_conpty_win.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/pty_process_win.c.generated.h" # include "os/pty_process_win.c.generated.h"

View File

@@ -6,7 +6,7 @@
#include "nvim/event/process.h" #include "nvim/event/process.h"
#include "nvim/lib/queue.h" #include "nvim/lib/queue.h"
#include "nvim/os/os_win_conpty.h" #include "nvim/os/pty_conpty_win.h"
typedef enum { typedef enum {
kWinpty, kWinpty,