This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Fatal Error C1083
Cannot open filetype file: 'file': message
Possible causes
- File does not exist.
- File, subdirectory, or disk is read-only.
- No access permission for file or directory.
- Not enough file handles. Close some applications and recompile.
- The INCLUDE environment variable is set incorrectly.
- An #include directive uses double quotation marks around a path specification, which causes the standard directories to be skipped.
- You did not specify /com+ and your program uses managed constructs.
The following sample generates C1083:
#include "test.h" // C1083, test.h does not exist
void main() {
}