dll missing error in WP8 project using "Visual leak detector" and cocos2d-x

Hello,

I want to detect some memory leak in my Windows phone 8 project using cocos2dx-0.13.0-wp8-0.8. Tried CrtDumpMemoryLeaks. But it doesnt seem to work.
I added,
#define
CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h> to AppDelegate.cpp, but I cant see the line number or file name in the memory leak dump.

Output is like this:

{14866} normal block at 0x03FD09E0, 112 bytes long.
Data: <C:\Data\Programs> 43 3A 5C 44 61 74 61 5C 50 72 6F 67 72 61 6D 73

Tried using “Visual leak detector” as mentioned in this link: http://www.cocos2d-x.org/forums/6/topics/34165 But while running emulator exited giving this output message: “The program ‘[3348] HelloWorld.exe’ has exited with code –1073741515 (0xc0000135) ‘A dependent dll was not found’”. I copied the dlls in the Bin folder of VLD to 32\Debug but still getting the same error.

I am trying to port my iOS game to Windows. I am not familiar with Visual studio or development under windows. Any help will be appreciated.

Thanks !