Created
September 18, 2011 06:22
-
-
Save TonnyXu/1224803 to your computer and use it in GitHub Desktop.
the #include directive
This file contains hidden or 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
// Refer to http://msdn.microsoft.com/en-us/library/36k2cdd4(v=vs.80).aspx | |
/* Tonny's NOTE | |
* ------------ | |
* Sep 18, 2011 | |
* | |
* 1. このファイルが存在しているフォルダ -> | |
* 2. "header.h"をインクルードしたその他のファイルが存在しているフォルダ -> | |
* 3. コンパイラの /I に指定したフォルダ -> | |
* 4. 環境関数のINCLUDEに指定したフォルダ | |
* | |
* の順番に"header.h"ファイルを探す | |
*/ | |
#include "header.h" | |
/* Tonny's NOTE | |
* ------------ | |
* Sep 18, 2011 | |
* | |
* 1. コンパイラの /I に指定したフォルダ -> | |
* 2. 環境関数のINCLUDEに指定したフォルダ | |
* | |
* の順番に"header.h"ファイルを探す | |
*/ | |
#include <header.h> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment