Cygwin: pty: Convert CamelCase names to snake_case names.

This commit is contained in:
Takashi Yano
2019-11-16 08:27:24 +09:00
committed by Corinna Vinschen
parent 59362c80e3
commit edb1be4cce
8 changed files with 60 additions and 60 deletions

View File

@ -2101,13 +2101,13 @@ class fhandler_pty_common: public fhandler_termios
{
return get_ttyp ()->attach_pcon_in_fork;
}
DWORD getHelperProcessId (void)
DWORD get_helper_process_id (void)
{
return get_ttyp ()->HelperProcessId;
return get_ttyp ()->helper_process_id;
}
HPCON getPseudoConsole (void)
HPCON get_pseudo_console (void)
{
return get_ttyp ()->hPseudoConsole;
return get_ttyp ()->h_pseudo_console;
}
bool to_be_read_from_pcon (void);