C: Difference between revisions

From 太極
Jump to navigation Jump to search
(Created page with "== Socket programming == http://www.thegeekstuff.com/2011/12/c-socket-programming/")
 
No edit summary
Line 1: Line 1:
== Socket programming ==  
== Socket programming ==  
http://www.thegeekstuff.com/2011/12/c-socket-programming/
http://www.thegeekstuff.com/2011/12/c-socket-programming/
== Windows programming ==
=== Difference between Win32 project and CLR project ===
See [http://stackoverflow.com/questions/3739392/what-is-the-difference-between-a-win32-project-clr-empty-project-and-empt here].
A Win32 project is used if you want to end up with a DLL or a Win32 application usually using the bare WinAPI. A CLR project is used to create C++/CLI project, i.e. to use C++/CLI to target the .NET platform.

Revision as of 13:42, 4 February 2013

Socket programming

http://www.thegeekstuff.com/2011/12/c-socket-programming/

Windows programming

Difference between Win32 project and CLR project

See here.

A Win32 project is used if you want to end up with a DLL or a Win32 application usually using the bare WinAPI. A CLR project is used to create C++/CLI project, i.e. to use C++/CLI to target the .NET platform.