MFC를 사용하지 않는 WIN32 어플리케이션에서는 WIN32_LEAN_AND_MEAN를 정의해놓자.
그래서, 실행파일의 크기 및 컴파일 시간을 줄일 수 있다.
#define WIN32_LEAN_AND_MEAN
<example>
#ifdef _MSC_VER // VC
# pragma once
#endif
#ifndef _WIIMOTE_H
# define _WIIMOTE_H
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <tchar.h> // auto Unicode/Ansi support
#include <queue> // for HID write method
#include <list> // for state recording
using namespace std;
요즘 wiimote하고 nunchuk를 구입해서 소프트웨어와 연동하는 것을 해보고 있다. 로봇의 조종과 모션에 적절히 응용할 수 있을것 같아서..
'Robotics > Software Tech.' 카테고리의 다른 글
[boost] string tokenizer (0) | 2009.03.08 |
---|---|
[MFC]SDI기반 OpenGL 사용 (6) | 2009.02.26 |
Robot Control Software (0) | 2009.02.08 |
로봇용 어플리케이션 프레임워크 - Tekkotsu (0) | 2009.02.05 |
ROBOOP,A Robotics Object Oriented Package in C++ Class (0) | 2009.02.05 |