compile error C2660: “cocos2d::CCEGLView::Create”:cannot accept three arguments

My code:
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
// Initialize OpenGLView instance, that release by CCDirector when application terminate.
// The HelloWorld is designed as HVGA.
CCEGLView * pMainWnd = new CCEGLView();
CC_BREAK_IF(! pMainWnd
|| ! pMainWnd->Create(TEXT (“MyMapTest”), 320, 480));
#endif // CC_PLATFORM_WIN32

compiled failed!!
how to deal with it?
Thanks;