mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
* Create a branch for USB experiments.
svn path=/branches/usb-experiments/; revision=72629
This commit is contained in:
parent
28d8ba0d3e
commit
0ee830d7a4
23049 changed files with 0 additions and 1313991 deletions
61
base/shell/progman/string.c
Normal file
61
base/shell/progman/string.c
Normal file
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
* Program Manager
|
||||
*
|
||||
* Copyright 1996 Ulrich Schmid
|
||||
* Copyright 2002 Sylvain Petreolle
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/*
|
||||
* PROJECT: ReactOS Program Manager
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* FILE: base/shell/progman/string.c
|
||||
* PURPOSE: String utility functions
|
||||
* PROGRAMMERS: Ulrich Schmid
|
||||
* Sylvain Petreolle
|
||||
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
#include "progman.h"
|
||||
|
||||
WCHAR szTitle[256]; // MAX_STRING_LEN ?
|
||||
|
||||
VOID STRING_LoadStrings(VOID)
|
||||
{
|
||||
LoadStringW(Globals.hInstance, IDS_PROGRAM_MANAGER, szTitle, ARRAYSIZE(szTitle));
|
||||
}
|
||||
|
||||
VOID STRING_LoadMenus(VOID)
|
||||
{
|
||||
HMENU hMainMenu;
|
||||
|
||||
/* Create the menu */
|
||||
hMainMenu = LoadMenuW(Globals.hInstance, MAKEINTRESOURCEW(MAIN_MENU));
|
||||
Globals.hFileMenu = GetSubMenu(hMainMenu, 0);
|
||||
Globals.hOptionMenu = GetSubMenu(hMainMenu, 1);
|
||||
Globals.hWindowsMenu = GetSubMenu(hMainMenu, 2);
|
||||
Globals.hLanguageMenu = GetSubMenu(hMainMenu, 3);
|
||||
|
||||
if (Globals.hMDIWnd)
|
||||
SendMessageW(Globals.hMDIWnd, WM_MDISETMENU, (WPARAM)hMainMenu, (LPARAM)Globals.hWindowsMenu);
|
||||
else
|
||||
SetMenu(Globals.hMainWnd, hMainMenu);
|
||||
|
||||
/* Destroy the old menu */
|
||||
if (Globals.hMainMenu)
|
||||
DestroyMenu(Globals.hMainMenu);
|
||||
Globals.hMainMenu = hMainMenu;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue