Sunday, November 28, 2010

Yahoo weather alert

Friday, November 19, 2010

How facebook destroys millions of human hours.

I bet you have a facebook account. I also have. But the amount tof time we surf in the facebook site is different from each other. But have you ever gain any thing from the facebook site? sometimes you may think that you got lot of things. But if you think deep it is nothing. 500 million people wasting their time for something which is not giving them any value to their life. But the worst thing is no one has understood this point. Sometimes people may understand but they don't care as long as they can be happy with facebook. But if you can spend that time for reading some interesting thing, designing your house, giving a solution to a common problem or any kind of thing that gives you some value, then you will be far more successful than where you are. So Think about this.

Thursday, November 18, 2010

Simple and amazing Desktop capture tool

This is a cool app from which we can track the work we are doing in the desktop.
http://camstudio.org/

Wednesday, November 17, 2010

My thoughts about life

  • treat others as humans. NOT by their profession.....then u would realize the value of human life...
  • Each and everyone in this world are unique! Different people have different talents .. Always respect others... Then only others will respect you ...

Sunday, November 14, 2010

error LNK2019: unresolved external symbol wmain referenced in function mainWCRTStartup

If you are a programmer for WIN32 API, following error would have given you lots of headaches. When you are compiling a simple application with either one of the following functions as your main() function, this error can be occured.
  • WinMain
  • wWinMain
  • main
  • wmain
When you are compiling such a program with Visual Studio, you may get the following 


error.error LNK2019: unresolved external symbol wmain referenced in function mainWCRTStartup  corelibc.lib

What this error reflects is that the wmain function cannot be found by the compiler. The CRT entrypoint for your application needs to match your "main" entrypoint.  Here is the mapping:

  • WinMain       ->  WinMainCRTStartup
  • wWinMain     ->  wWinMainCRTStartup
  • main               ->  mainACRTStartup
  • wmain            -> mainWCRTStartup

The entrypoint is specified on the linker command line after the /ENTRY option.  Sometimes the linker can guess which is the right entrypoint to use, but I would never trust it and just always specify.

Go to the properties->Configuration Properties->Linker->Command Line->       
In the Additional options section, just add the following line

/ENTRY:"WinMainCRTStartup" ( If you are using WinMain )

Like that you can add the relevant option for matching main function you are using.
THAT'S IT !!!!!!!!!!!!!!!!

Monday, November 8, 2010

Simple but revolutionary launch pad

Launchy is a simple but very effective and helpful tool which can be used to run your programs very quickly without hovering your mouse here and there. You can find the installer from the following location.
http://www.launchy.net/