macdrv_res.h 1.54 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
/*
 * Resource ID constants for Mac driver
 *
 * Copyright (c) 2013 Ken Thomases for CodeWeavers Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef __WINE_MACDRV_RES_H
#define __WINE_MACDRV_RES_H


/* Strings */
#define STRING_MENU_WINE                        0x100
#define STRING_MENU_ITEM_HIDE_APPNAME           0x101
#define STRING_MENU_ITEM_HIDE                   0x102
#define STRING_MENU_ITEM_HIDE_OTHERS            0x103
#define STRING_MENU_ITEM_SHOW_ALL               0x104
#define STRING_MENU_ITEM_QUIT_APPNAME           0x105
#define STRING_MENU_ITEM_QUIT                   0x106

#define STRING_MENU_WINDOW                      0x110
#define STRING_MENU_ITEM_MINIMIZE               0x111
#define STRING_MENU_ITEM_ZOOM                   0x112
#define STRING_MENU_ITEM_ENTER_FULL_SCREEN      0x113
#define STRING_MENU_ITEM_BRING_ALL_TO_FRONT     0x114


#endif