-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
859 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
======================================================================== | ||
WIN32 APPLICATION : Win_learn | ||
======================================================================== | ||
|
||
|
||
AppWizard has created this Win_learn application for you. | ||
|
||
This file contains a summary of what you will find in each of the files that | ||
make up your Win_learn application. | ||
|
||
Win_learn.cpp | ||
This is the main application source file. | ||
|
||
Win_learn.dsp | ||
This file (the project file) contains information at the project level and | ||
is used to build a single project or subproject. Other users can share the | ||
project (.dsp) file, but they should export the makefiles locally. | ||
|
||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
AppWizard has created the following resources: | ||
|
||
Win_learn.rc | ||
This is a listing of all of the Microsoft Windows resources that the | ||
program uses. It includes the icons, bitmaps, and cursors that are stored | ||
in the RES subdirectory. This file can be directly edited in Microsoft | ||
Visual C++. | ||
|
||
res\Win_learn.ico | ||
This is an icon file, which is used as the application's icon (32x32). | ||
This icon is included by the main resource file Win_learn.rc. | ||
|
||
small.ico | ||
%%This is an icon file, which contains a smaller version (16x16) | ||
of the application's icon. This icon is included by the main resource | ||
file Win_learn.rc. | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
Other standard files: | ||
|
||
StdAfx.h, StdAfx.cpp | ||
These files are used to build a precompiled header (PCH) file | ||
named Win_learn.pch and a precompiled types file named StdAfx.obj. | ||
|
||
Resource.h | ||
This is the standard header file, which defines new resource IDs. | ||
Microsoft Visual C++ reads and updates this file. | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
Other notes: | ||
|
||
AppWizard uses "TODO:" to indicate parts of the source code you | ||
should add to or customize. | ||
|
||
|
||
///////////////////////////////////////////////////////////////////////////// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// stdafx.cpp : source file that includes just the standard includes | ||
// Win_learn.pch will be the pre-compiled header | ||
// stdafx.obj will contain the pre-compiled type information | ||
|
||
#include "stdafx.h" | ||
|
||
// TODO: reference any additional headers you need in STDAFX.H | ||
// and not in this file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// stdafx.h : include file for standard system include files, | ||
// or project specific include files that are used frequently, but | ||
// are changed infrequently | ||
// | ||
|
||
#if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_) | ||
#define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_ | ||
|
||
#if _MSC_VER > 1000 | ||
#pragma once | ||
#endif // _MSC_VER > 1000 | ||
|
||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers | ||
#define _WIN32_WINNT 0x0400 | ||
|
||
// Windows Header Files: | ||
#include <windows.h> | ||
|
||
// C RunTime Header Files | ||
#include <stdlib.h> | ||
#include <malloc.h> | ||
#include <memory.h> | ||
#include <tchar.h> | ||
|
||
// Local Header Files | ||
|
||
// TODO: reference additional headers your program requires here | ||
|
||
//{{AFX_INSERT_LOCATION}} | ||
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. | ||
|
||
#endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_) |
Binary file not shown.
Oops, something went wrong.