How to add and use cocos2d-x-extension with Microsoft Visual Studio

I download the extension from github and put them in cocos2d-1.0.1-x-0.11.0\cocos2dx\extensions. For instance, the file AdvanceSprite.h is put in the following path
cocos2d-1.0.1-x-0.11.0\cocos2dx\extensions\AdvanceSpriteAndParticle

I open my project and include the AdvanceSprite header. When compile, I’ve got the following error message.

error LNK2019: unresolved external symbol "public: __thiscall cocos2d::AdvanceSprite::AdvanceSprite(void)" (??0AdvanceSprite@cocos2d@@QAE@XZ) referenced in function "public: virtual bool __thiscall HelloWorld::init(void)" (?init@HelloWorld@@UAE_NXZ)

fatal error LNK1120: 1 unresolved externals

The CC_DLL is not added in those classes. Please help to solve other than modifying the code. Thanks for your help.

Even I am getting same error. Any one resolved this?