Jus wandering to know what the different between this to statement?

PHP Code:
#Include <windows.h> 
Does the above statement will lead the compiler to source for the include header file within the source path as specified under the "Tools|Option|Directory"?


PHP Code:
#Include "windows.h" 
And this will lead the compiler to source foe the include header file within the current project file directory?


K-PAX