|
감사합니다 설치는 끝난거같은데요
무슨명령어를 쳐야할지 막막하네요;;
아 그리고 #include <zlib.h> 하니깐
[C++ Error] zconf.h(270): E2015 Ambiguity between 'Byte' and 'System::Byte'
이런에러가뜨네요?;
#if !defined(__MACTYPES__)
typedef unsigned char Byte; /* 8 bits */
#endif
typedef unsigned int uInt; /* 16 bits or more */
typedef unsigned long uLong; /* 32 bits or more */
#ifdef SMALL_MEDIUM
/* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
# define Bytef Byte FAR
#else
typedef Byte FAR Bytef;
#endif
오류있는부분쪽 내용입니다.
|