[DshowFilter] Wince5.0을 최초 설치 후 Filter 관련 Project를 Build 시 발생하는 Error
C:\WINCE500\PUBLIC\DIRECTX\SDK\INC\ctlutil.h(289) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
F4를 눌러서 에러가 나는 부분으로 뛰면
ctlutil.h 파일 228 Line에서 Error 발생 오리지널
private: // Prevent bugs from constructing from LONG (which gets // converted to double and then multiplied by 10000000 COARefTime(LONG); operator=(LONG); // <------ Check Here };
변경
private: // Prevent bugs from constructing from LONG (which gets // converted to double and then multiplied by 10000000 COARefTime(LONG); LONG operator=(LONG); // <------ Check Here };