| Line | |
|---|
| 1 | // stdafx.h : �W���̃V�X�e�� �C���N���[�h �t�@�C���̃C���N���[�h �t�@�C���A�܂��� |
|---|
| 2 | // �Q�Ɖ������A�����܂��X�������A�v���W�F�N�g���̃C���N���[�h �t�@�C��
|
|---|
| 3 | // ��q���܂��B
|
|---|
| 4 | //
|
|---|
| 5 |
|
|---|
| 6 | #pragma once
|
|---|
| 7 |
|
|---|
| 8 | // ���Ŏw�肳�ꂽ���̑O�ɑΏۃv���b�g�t�H�[����肵�Ȃ����Ȃ����ꍇ�A�ȉ��̒���X���Ă��������B
|
|---|
| 9 | // �قȂ����b�g�t�H�[���ɑΉ������Ɋւ����V���ɂ��ẮAMSDN ��Ƃ��Ă��������B
|
|---|
| 10 | #ifndef WINVER // Windows XP �ȍ~�̃o�[�W�����ɌŗL�̋@�\�̎g�p����܂��B
|
|---|
| 11 | #define WINVER 0x0501 // ���� Windows �̑��̃o�[�W������K�Ȓl�ɕύX���Ă��������B
|
|---|
| 12 | #endif
|
|---|
| 13 |
|
|---|
| 14 | #ifndef _WIN32_WINNT // Windows XP �ȍ~�̃o�[�W�����ɌŗL�̋@�\�̎g�p����܂��B
|
|---|
| 15 | #define _WIN32_WINNT 0x0501 // ���� Windows �̑��̃o�[�W������K�Ȓl�ɕύX���Ă��������B
|
|---|
| 16 | #endif
|
|---|
| 17 |
|
|---|
| 18 | #ifndef _WIN32_WINDOWS // Windows 98 �ȍ~�̃o�[�W�����ɌŗL�̋@�\�̎g�p����܂��B
|
|---|
| 19 | #define _WIN32_WINDOWS 0x0410 // ���� Windows Me �܂��͂����~�̃o�[�W������K�Ȓl�ɕύX���Ă��������B
|
|---|
| 20 | #endif
|
|---|
| 21 |
|
|---|
| 22 | #ifndef _WIN32_IE // IE 6.0 �ȍ~�̃o�[�W�����ɌŗL�̋@�\�̎g�p����܂��B
|
|---|
| 23 | #define _WIN32_IE 0x0600 // ���� IE. �̑��̃o�[�W������K�Ȓl�ɕύX���Ă��������B
|
|---|
| 24 | #endif
|
|---|
| 25 |
|
|---|
| 26 | #define WIN32_LEAN_AND_MEAN // Windows �w�b�_�[�����p�������Ȃ�������O���܂��B
|
|---|
| 27 | // Windows �w�b�_�[ �t�@�C��:
|
|---|
| 28 | #include <windows.h>
|
|---|
| 29 |
|
|---|
| 30 | // C �����^�C�� �w�b�_�[ �t�@�C��
|
|---|
| 31 | #include <stdlib.h>
|
|---|
| 32 | #include <malloc.h>
|
|---|
| 33 | #include <memory.h>
|
|---|
| 34 | #include <tchar.h>
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 | // TODO: �v���O�����ɕK�v�Ȓlj�w�b�_�[����ŎQ�Ƃ��Ă��������B
|
|---|