2015/06/17
[HALCON] Win32 함수 충돌
HALCON 내부에서 함수 사용으로 아래 함수를 정의를 해제(Undef) 하였다.
#if defined(_WIN32)
#undef FindText
#undef CreateMutex
#undef CreateEvent
#undef DeleteFile
#endif
위 함수를 사용하고자 하는 경우 Ansi 인지 Unicode 인지 명시하여 사용하면 컴파일 에러를 피할 수 있다.
예) DeleteFileA, DeleteFileW
Original Post : http://neodreamer-dev.tistory.com/749
#if defined(_WIN32)
#undef FindText
#undef CreateMutex
#undef CreateEvent
#undef DeleteFile
#endif
위 함수를 사용하고자 하는 경우 Ansi 인지 Unicode 인지 명시하여 사용하면 컴파일 에러를 피할 수 있다.
예) DeleteFileA, DeleteFileW
Original Post : http://neodreamer-dev.tistory.com/749
Labels:
DeleteFile
,
FindText
,
halcon
,
TistoryOldPost
,
Win32
,
할콘
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment