资源简介

一个简单的小例子,使用游戏手柄发出命令。用到winmm.lib和winmm.dll。包内里有

资源截图

代码片段和文件信息

// Myjoystick.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Myjoystick.h“
#include “MyjoystickDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMyjoystickApp

BEGIN_MESSAGE_MAP(CMyjoystickApp CWinApp)
//{{AFX_MSG_MAP(CMyjoystickApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyjoystickApp construction

CMyjoystickApp::CMyjoystickApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMyjoystickApp object

CMyjoystickApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMyjoystickApp initialization

BOOL CMyjoystickApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CMyjoystickDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-03-03 21:34  Myjoystick\
     文件        1293  2014-03-04 10:19  Myjoystick\Myjoystick.clw
     文件        3651  2014-03-03 21:34  Myjoystick\ReadMe.txt
     文件        1368  2014-03-03 21:34  Myjoystick\Myjoystick.h
     文件        2119  2014-03-03 21:34  Myjoystick\Myjoystick.cpp
     文件        1054  2014-03-03 21:34  Myjoystick\StdAfx.h
     文件         212  2014-03-03 21:34  Myjoystick\StdAfx.cpp
     目录           0  2014-03-03 21:34  Myjoystick\res\
     文件         402  2014-03-03 21:34  Myjoystick\res\Myjoystick.rc2
     文件        1078  2014-03-03 21:34  Myjoystick\res\Myjoystick.ico
     文件       50176  2014-03-04 10:19  Myjoystick\Myjoystick.ncb
     目录           0  2014-03-03 21:34  Myjoystick\Debug\
     文件        2680  2014-03-03 23:15  Myjoystick\Debug\Myjoystick.res
     文件      205824  2014-03-04 10:19  Myjoystick\Debug\vc60.idb
     文件     5498748  2014-03-03 21:58  Myjoystick\Debug\Myjoystick.pch
     文件      380928  2014-03-04 10:18  Myjoystick\Debug\vc60.pdb
     文件      105447  2014-03-03 21:58  Myjoystick\Debug\StdAfx.obj
     文件       42696  2014-03-02 21:49  Myjoystick\Debug\winmm.lib
     文件      194048  2010-11-21 05:29  Myjoystick\Debug\winmm.dll
     文件      386048  2014-03-04 10:18  Myjoystick\Debug\Myjoystick.pdb
     文件      253496  2014-03-04 10:18  Myjoystick\Debug\Myjoystick.ilk
     文件      110665  2014-03-04 10:18  Myjoystick\Debug\Myjoystick.exe
     文件       14440  2014-03-03 22:57  Myjoystick\Debug\Myjoystick.obj
     文件       35298  2014-03-04 10:18  Myjoystick\Debug\MyjoystickDlg.obj
     文件         543  2014-03-03 21:34  Myjoystick\Myjoystick.dsw
     文件        1000  2014-03-04 10:18  Myjoystick\Myjoystick.plg
     文件        1589  2014-03-03 22:52  Myjoystick\MyjoystickDlg.h
     文件         872  2014-03-03 23:15  Myjoystick\Resource.h
     文件       35732  2014-03-03 23:15  Myjoystick\Myjoystick.aps
     文件        5440  2014-03-03 23:15  Myjoystick\Myjoystick.rc
     文件        6856  2014-03-03 23:19  Myjoystick\MyjoystickDlg.cpp
............此处省略2个文件信息

评论

共有 条评论