Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Injection
- mock.patch
- MySQL
- NumPy Unicode Error
- malware
- h5py.File
- error
- idapro
- ida pro
- hex-rays
- why error
- pytest
- idb2pat
- ida
- debugging
- Ransomware
- error fix
- TensorFlow
- 포인터 매핑
- javascript
- idapython
- commandline
- Analysis
- Rat
- svn update
- data distribution
- open office xml
- Python
- x64
- ecma
Archives
- Today
- Total
13 Security Lab
[troubleShooting]미리 컴파일된 헤더 사용을 찾을 때 건너뛰었습니다. 본문
Computer Science/Programming
[troubleShooting]미리 컴파일된 헤더 사용을 찾을 때 건너뛰었습니다.
Maj0r Tom 2016. 1. 5. 21:27
warning C4627: '#include <windows.h>': 미리 컴파일된 헤더 사용을 찾을 때 건너뛰었습니다.
...
...
...
fatal error C1010: 미리 컴파일된 헤더를 찾는 동안 예기치 않은 파일의 끝이 나타났습니다. '#include "StdAfx.h"'을(를) 소스에 추가하시겠습니까?
방법1. 미리 컴파일된 헤더 사용안하기
프로젝트 속성 페이지 -> 구성 속성 -> C/C++ -> 미리 컴파일된 헤더 -> 미리 컴파일된 헤더 -> 사용안함
방법2. 설정을 변경하지 않고 사용할때
#include "StdAfx.h" 를 에러가 발생한 소스(.cpp)에서 첫번째에 명시한다.
관련 MSDN Ref. https://social.msdn.microsoft.com/Forums/ko-KR/cc067d9f-3c6e-4ca6-a5ce-68114a428da3/visual-c-?forum=visualcplusko
Comments