From c4b62652bd3af3618966e0f1ddb38aa3d7c29d7d Mon Sep 17 00:00:00 2001 From: Hugh McMaster Date: Thu, 24 Oct 2013 18:08:16 +1100 Subject: remove-tabs --- programs/wineconsole/winecon_private.h | 36 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/programs/wineconsole/winecon_private.h b/programs/wineconsole/winecon_private.h index 1daf581..c84f6c1 100644 --- a/programs/wineconsole/winecon_private.h +++ b/programs/wineconsole/winecon_private.h @@ -27,10 +27,10 @@ /* this is the configuration stored & loaded into the registry */ struct config_data { - unsigned cell_width; /* width in pixels of a character */ - unsigned cell_height; /* height in pixels of a character */ - int cursor_size; /* in % of cell height */ - int cursor_visible; + unsigned cell_width; /* width in pixels of a character */ + unsigned cell_height; /* height in pixels of a character */ + int cursor_size; /* in % of cell height */ + int cursor_visible; DWORD def_attr; WCHAR face_name[32]; /* name of font (size is LF_FACESIZE) */ DWORD font_weight; @@ -38,11 +38,11 @@ struct config_data { DWORD history_nodup; /* TRUE if commands are not stored twice in buffer */ DWORD menu_mask; /* MK_CONTROL MK_SHIFT mask to drive submenu opening */ DWORD quick_edit; /* whether mouse ops are sent to app (false) or used for content selection (true) */ - unsigned sb_width; /* active screen buffer width */ - unsigned sb_height; /* active screen buffer height */ - unsigned win_width; /* size (in cells) of visible part of window (width & height) */ - unsigned win_height; - COORD win_pos; /* position (in cells) of visible part of screen buffer in window */ + unsigned sb_width; /* active screen buffer width */ + unsigned sb_height; /* active screen buffer height */ + unsigned win_width; /* size (in cells) of visible part of window (width & height) */ + unsigned win_height; + COORD win_pos; /* position (in cells) of visible part of screen buffer in window */ BOOL exit_on_die; /* whether the wineconsole should quit if server destroys the console */ unsigned edition_mode; /* edition mode flavor while line editing */ WCHAR* registry; /* part of HKLU\\\\Console where config is read from (NULL if default settings) */ @@ -64,16 +64,16 @@ struct inner_data { BOOL in_grab_changes;/* to handle re-entrant calls to WINECON_GrabChanges */ BOOL dying; /* to TRUE when we've been notified by server that child has died */ - int (*fnMainLoop)(struct inner_data* data); - void (*fnPosCursor)(const struct inner_data* data); - void (*fnShapeCursor)(struct inner_data* data, int size, int vis, BOOL force); - void (*fnComputePositions)(struct inner_data* data); - void (*fnRefresh)(const struct inner_data* data, int tp, int bm); - void (*fnResizeScreenBuffer)(struct inner_data* data); - void (*fnSetTitle)(const struct inner_data* data); - void (*fnScroll)(struct inner_data* data, int pos, BOOL horz); + int (*fnMainLoop)(struct inner_data* data); + void (*fnPosCursor)(const struct inner_data* data); + void (*fnShapeCursor)(struct inner_data* data, int size, int vis, BOOL force); + void (*fnComputePositions)(struct inner_data* data); + void (*fnRefresh)(const struct inner_data* data, int tp, int bm); + void (*fnResizeScreenBuffer)(struct inner_data* data); + void (*fnSetTitle)(const struct inner_data* data); + void (*fnScroll)(struct inner_data* data, int pos, BOOL horz); void (*fnSetFont)(struct inner_data* data, const WCHAR* font, unsigned height, unsigned weight); - void (*fnDeleteBackend)(struct inner_data* data); + void (*fnDeleteBackend)(struct inner_data* data); void* private; /* data part belonging to the chosen backed */ }; -- 1.7.10.4