Showing posts with label window. Show all posts
Showing posts with label window. Show all posts

Wednesday, July 8, 2009

EICAR test

X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

빈 텍스트 파일을 생성해서 위와 같이 작성한 후 저장한다.

안티바이러스 프로그램이 위의 파일을 바이러스 감염 파일로 감지할 것이다.

그렇지 못하면 안티바이러스 프로그램은 문제가 있다.

http://en.wikipedia.org/wiki/Eicar_test_file

Wednesday, June 17, 2009

스트림 동영상 깨짐 - ATI 비디오카드

Windows Media Video Acceleration 기능을 해제하면 된다.

[Catalyst Control Center] - [Video] - [All Setting] 메뉴에서 Windows Media Settings 항목의 'Windows Media Video Acceleration' 의 체크를 해제

Wednesday, February 25, 2009

error C2061: syntax error : identifier 'THIS_FILE'

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

의 밑에 있는 헤더파일을

이 문장들 위에서 인클루드 한다

헤더파일이 꼬이는 경우

missing storage-class or type specifiers

라는 에러 메시지를 출력한다.

서로가 서로를 인클루드 할 때 발생한다.

필요로 하는 클래스를 전방위 선언한다.

그리고 구현 파일에서 해당 헤더 파일을 인클루드 한다.