summaryrefslogtreecommitdiffstats
path: root/src/glbl_ime.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-30 19:44:38 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-30 19:44:38 +0100
commit9bf703d46a79fbffeb829246ea5ce385bddc4166 (patch)
tree6afff788b4fbd8fbf61557c47c24c26c975ea8ee /src/glbl_ime.h
parent20ebbeac461ffc2a5e5dbfbb0ba380b8854615bd (diff)
patch 8.1.2366: using old C style commentsv8.1.2366
Problem: Using old C style comments. Solution: Use // comments where appropriate.
Diffstat (limited to 'src/glbl_ime.h')
-rw-r--r--src/glbl_ime.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/glbl_ime.h b/src/glbl_ime.h
index 45ed07fb3c..bce9c73a59 100644
--- a/src/glbl_ime.h
+++ b/src/glbl_ime.h
@@ -7,27 +7,27 @@
*/
#ifdef GLOBAL_IME
-#ifndef _INC_GLOBAL_IME
-#define _INC_GLOBAL_IME
+# ifndef _INC_GLOBAL_IME
+# define _INC_GLOBAL_IME
-#ifdef __cplusplus
+# ifdef __cplusplus
extern "C" {
-#endif /* __cplusplus */
+# endif
void global_ime_init(ATOM, HWND);
void global_ime_end(void);
LRESULT WINAPI global_ime_DefWindowProc(HWND, UINT, WPARAM, LPARAM);
BOOL WINAPI global_ime_TranslateMessage(CONST MSG *);
void WINAPI global_ime_set_position(POINT*);
void WINAPI global_ime_set_font(LOGFONT*);
-#if 0
+# if 0
void WINAPI global_ime_status_evacuate(void);
void WINAPI global_ime_status_restore(void);
-#endif
+# endif
void WINAPI global_ime_set_status(int status);
int WINAPI global_ime_get_status(void);
-#ifdef __cplusplus
+# ifdef __cplusplus
}
-#endif /* __cplusplus */
+# endif
-#endif /* _INC_GLOBAL_IME */
-#endif /* GLOBAL_IME */
+# endif // _INC_GLOBAL_IME
+#endif // GLOBAL_IME