Click here to Skip to main content
15,891,529 members
Articles / Programming Languages / C++

Win32 splitter window project

Rate me:
Please Sign up or sign in to vote.
3.43/5 (20 votes)
26 Jul 20072 min read 72.7K   5.4K   37  
Creating a simple, pure WIN32 SDI application with a split main window
// Splitter_app.cpp : Defines the entry point for the application.
//

#include "stdafx.h"

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
 	// TODO: Place code here.

	return 0;
}



By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
Hi all, i am satheesh

i have worked in Writing windows device driver, win32 , MFC, COM and started working in WTL now.




Comments and Discussions