Browse Subversion Repository
Contents of /stdafx.h
Parent Directory
| Revision Log
Revision 7 -
( show annotations)
( download)
( as text)
Mon Aug 31 17:22:53 2009 UTC
(14 years, 7 months ago)
by berupon
File MIME type: text/x-chdr
File size: 481 byte(s)
ちょっとだけ圧縮率向上
昔のソースからマージしたのでデグレ有り。GCCではビルド出来ないようになった。
| 1 |
// stdafx.h : 標準のシステム インクルード ファイルのインクルード ファイル、または |
| 2 |
// 参照回数が多く、かつあまり変更されない、プロジェクト専用のインクルード ファイル |
| 3 |
// を記述します。 |
| 4 |
// |
| 5 |
|
| 6 |
#pragma once |
| 7 |
|
| 8 |
#include "targetver.h" |
| 9 |
|
| 10 |
#include <stdio.h> |
| 11 |
#include <tchar.h> |
| 12 |
|
| 13 |
|
| 14 |
template <typename T> |
| 15 |
__forceinline void OffsetPtr(T*& ptr, int offsetBytes) |
| 16 |
{ |
| 17 |
ptr = (T*) ((const char*)ptr + offsetBytes); |
| 18 |
} |
| 19 |
|
| 20 |
|
| 21 |
// TODO: プログラムに必要な追加ヘッダーをここで参照してください。 |
|