forked from ppescher/resizablelib
-
Notifications
You must be signed in to change notification settings - Fork 1
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
13 changed files
with
741 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,12 @@ | ||
Debug | ||
Debug_Static | ||
Release | ||
Release_Static | ||
*.clw | ||
*.aps | ||
*.ncb | ||
*.opt | ||
*.plg | ||
*.scc | ||
*.WW | ||
*.positions |
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,55 @@ | ||
// Demo.cpp : Defines the class behaviors for the application. | ||
// | ||
|
||
#include "stdafx.h" | ||
#include "Demo.h" | ||
#include "DemoDlg.h" | ||
|
||
#ifdef _DEBUG | ||
#define new DEBUG_NEW | ||
#undef THIS_FILE | ||
static char THIS_FILE[] = __FILE__; | ||
#endif | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CDemoApp | ||
|
||
BEGIN_MESSAGE_MAP(CDemoApp, CWinApp) | ||
//{{AFX_MSG_MAP(CDemoApp) | ||
//}}AFX_MSG | ||
ON_COMMAND(ID_HELP, CWinApp::OnHelp) | ||
END_MESSAGE_MAP() | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CDemoApp construction | ||
|
||
CDemoApp::CDemoApp() | ||
{ | ||
} | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// The one and only CDemoApp object | ||
|
||
CDemoApp theApp; | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CDemoApp initialization | ||
|
||
BOOL CDemoApp::InitInstance() | ||
{ | ||
// Standard initialization | ||
|
||
CDemoDlg dlg; | ||
m_pMainWnd = &dlg; | ||
int nResponse = dlg.DoModal(); | ||
if (nResponse == IDOK) | ||
{ | ||
} | ||
else if (nResponse == IDCANCEL) | ||
{ | ||
} | ||
|
||
// Since the dialog has been closed, return FALSE so that we exit the | ||
// application, rather than start the application's message pump. | ||
return FALSE; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,44 @@ | ||
Microsoft Developer Studio Workspace File, Format Version 6.00 | ||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! | ||
|
||
############################################################################### | ||
|
||
Project: "ResizableLib"="..\ResizableLib\ResizableLib.dsp" - Package Owner=<4> | ||
|
||
Package=<5> | ||
{{{ | ||
}}} | ||
|
||
Package=<4> | ||
{{{ | ||
}}} | ||
|
||
############################################################################### | ||
|
||
Project: "Demo"=".\Demo.dsp" - Package Owner=<4> | ||
|
||
Package=<5> | ||
{{{ | ||
}}} | ||
|
||
Package=<4> | ||
{{{ | ||
Begin Project Dependency | ||
Project_Dep_Name ResizableLib | ||
End Project Dependency | ||
}}} | ||
|
||
############################################################################### | ||
|
||
Global: | ||
|
||
Package=<5> | ||
{{{ | ||
}}} | ||
|
||
Package=<3> | ||
{{{ | ||
}}} | ||
|
||
############################################################################### | ||
|
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,47 @@ | ||
// Demo.h : main header file for the TESTCOMBOBOX application | ||
// | ||
|
||
#if !defined(AFX_TESTCOMBOBOX_H__AD8B91BB_D15A_4B88_B140_6D0F92474AED__INCLUDED_) | ||
#define AFX_TESTCOMBOBOX_H__AD8B91BB_D15A_4B88_B140_6D0F92474AED__INCLUDED_ | ||
|
||
#if _MSC_VER > 1000 | ||
#pragma once | ||
#endif // _MSC_VER > 1000 | ||
|
||
#ifndef __AFXWIN_H__ | ||
#error include 'stdafx.h' before including this file for PCH | ||
#endif | ||
|
||
#include "resource.h" // main symbols | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CDemoApp: | ||
// See Demo.cpp for the implementation of this class | ||
// | ||
|
||
class CDemoApp : public CWinApp | ||
{ | ||
public: | ||
CDemoApp(); | ||
|
||
// Overrides | ||
// ClassWizard generated virtual function overrides | ||
//{{AFX_VIRTUAL(CDemoApp) | ||
public: | ||
virtual BOOL InitInstance(); | ||
//}}AFX_VIRTUAL | ||
|
||
// Implementation | ||
|
||
//{{AFX_MSG(CDemoApp) | ||
//}}AFX_MSG | ||
DECLARE_MESSAGE_MAP() | ||
}; | ||
|
||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
//{{AFX_INSERT_LOCATION}} | ||
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. | ||
|
||
#endif // !defined(AFX_TESTCOMBOBOX_H__AD8B91BB_D15A_4B88_B140_6D0F92474AED__INCLUDED_) |
Oops, something went wrong.