본문 바로가기

나머지/IT개발.잡다한것.82

메모리 스트로브 스트로브는 컴퓨터나 메모리 기술에서, 인접한 병렬 회선들 상의 데이터나 다른 신호들을 확인하기 위해 보내지는 신호를 말한다. 메모리 기술에서는, DRAM에 행과 열 주소를 알려주기 위해 RAS와 CAS 신호가 각각 사용된다.출처 : http://terms.co.kr/strobe.htm Address Strobe definitionstorage (AS) One of the input signals of a memory device, especially semiconductor memory, which is asserted to tell the memory device that the address inputs are valid. Upon receiving this signal the selected mem.. 2012. 9. 18.
비주얼 스튜디오 2010 줄 번호( visual studio line numbering ) Tools 메뉴 -> Options -> Text Editor -> C/C++ -> General -> Line Numbers 에 체크 2012. 9. 14.
This function or variable may be unsafe fopen_s fscanf_s 경고 1>------ Build started: Project: image123, Configuration: Release Win32 ------1> image123.cpp1>image123.cpp(4): warning C4068: unknown pragma1>image123.cpp(52): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1> C:\Program Files\Microsoft Visual Studio 10.0\VC\include.. 2012. 9. 14.
윈도우 프로시저 window procedure 메시지 처리 함수란 메시지가 발생할 때 프로그램의 반응을 처리하는 일을 하며 WinMain 함수와는 별도로 WndProc이라는 이름으로 존재한다. 윈도우 프로시저(Window Procedure)라는 뜻이지만 통상 읽을 때는 "윈드프록"이라고 읽는다. WndProc은 WinMain에서 호출하는 것이 아니라 윈도우즈에 의해 호출된다. WinMain내의 메시지 루프는 메시지를 메시지 처리 함수로 보내주기만 할 뿐이며 WndProc은 메시지가 입력되면 윈도우즈에 의해 호출되어 메시지를 처리한다. 이렇게 운영체제에 의해 호출되는 응용 프로그램내의 함수를 콜백(CallBack) 함수라고 한다.WndProc의 인수는 모두 4개이며 MSG 구조체의 멤버 4개와 동일하다. hWnd는 메시지를 받을 윈도우의 핸들이며 iM.. 2012. 9. 13.
반응형