I did my best to exempt some of the bigger aligned blocks from the reformatting using the /* clang-format off */ and /* clang-format on */ tags. Probably some that shouldn't have been formatted were anyway; if you encounter them, please fix. The clang-format tags were left in on the basis that it's much easier to prune those out later than to put them back in, and it means that, modulo my custom version of clang-format, I should be able to run clang-format on the source tree again without changing anything, now that Pat has fixed the VA_DECL issues.
22 lines
530 B
C
22 lines
530 B
C
/* NetHack may be freely redistributed. See license for details. */
|
|
/*
|
|
* $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$
|
|
* $Date: 2002/07/22 03:19:13 $ $Revision: 1.1 $
|
|
*/
|
|
|
|
#ifndef MSWINMenuWindow_h
|
|
#define MSWINMenuWindow_h
|
|
|
|
#include "winMS.h"
|
|
#include "config.h"
|
|
#include "global.h"
|
|
|
|
#define MENU_TYPE_TEXT 1
|
|
#define MENU_TYPE_MENU 2
|
|
|
|
HWND mswin_init_menu_window(int type);
|
|
int mswin_menu_window_select_menu(HWND hwnd, int how, MENU_ITEM_P **);
|
|
void mswin_menu_window_size(HWND hwnd, LPSIZE sz);
|
|
|
|
#endif /* MSWINTextWindow_h */
|