LoadMenuIndirect函数究竟该怎么使用?

求教:LoadMenuIndirect函数究竟该如何使用??
我想通过LoadMenuIndirect函数,将加载指定的菜单模板到内存。

我自己写的代码如下


struct  
{
MENUITEMTEMPLATEHEADER mItemHeder;
MENUITEMTEMPLATE mItem[1];
}menuList;

HMENU hMenu;
menuList.mItemHeder.versionNumber = 0;
menuList.mItemHeder.offset = 0;

menuList.mItem[0].mtOption = MF_STRING;
menuList.mItem[0].mtID = IDM_FILE_NEW;
menuList.mItem[0].mtString[0] = NULL;      //这里我设置为NULL,但是运行程序后,菜单的位置显示的乱码。
hMenu = LoadMenuIndirect(&menuList);
SetMenu(hWnd, hMenu);


我的问题是:
(1)MENUITEMTEMPLATE
The MENUITEMTEMPLATE structure defines a menu item in a menu template. 

typedef struct { 
  WORD mtOption; 
  WORD mtID; 
  WCHAR mtString[1]; 
} MENUITEMTEMPLATE, *PMENUITEMTEMPLATE; 

该结构中的第3个字段,到底是做什么用的,我一直没弄明白。
MSDN上就说了一句话,mtString 
Specifies the null-terminated string for the menu item. 
在程序中,我想把一个字符串的地址赋值给他,但是结果还是乱码。或者是编译出错,类型转换方面的问题。
所以,我就没弄明白,这里  WCHAR mtString[1]; 究竟是做啥用的?

(2)关于乱码,的问题怎么解决?

请高手指教,本人不胜感激!!
------解决思路----------------------
The LoadMenuIndirect function loads the specified menu template in memory. 

Syntax

HMENU LoadMenuIndirect(          CONST MENUTEMPLATE *lpMenuTemplate
);
Parameters

lpMenuTemplate
[in] Pointer to a menu template or an extended menu template. A menu template consists of a MENUITEMTEMPLATEHEADER structure followed by one or more contiguous MENUITEMTEMPLATE structures. An extended menu template consists of a MENUEX_TEMPLATE_HEADER structure followed by one or more contiguous MENUEX_TEMPLATE_ITEM structures. 
Return Value

If the function succeeds, the return value is a handle to the menu.

If the function fails, the return value is NULL. To get extended error information, call GetLastError. 




Remarks

For both the ANSI and the Unicode version of this function, the strings in the MENUITEMTEMPLATE structure must be Unicode strings. 

Windows 95/98/Me: LoadMenuIndirectW is supported by the Microsoft Layer for Unicode. To use this, you must add certain files to your application, as outlined in Microsoft Layer for Unicode on Windows 95/98/Me Systems World Wide Web link.