본문 바로가기

오래된 흔적

(114)
FileZilla Server 구축하기 파일질라 서버(FileZilla Server)로 FTP 서버 구축하기 FileZilla FTP Server 설치에서 방화벽, Passive모드, 포트 접속(접근) 문제해결 방법 * 출처 http://www.nuno21.net/bbs/board.php?bo_table=server&wr_id=154
Deployment (C++) - 배포관련 KOR version Deployment (C++) Deployment is the process by which you distribute a finished application or component to be installed on other computers. Deployment is a multi-stage process that starts when an application is created on a developer's computer and ends when it is installed and ready to run on a user's computer. Visual Studio provides two different technologies for deploying Windows a..
도대체 MANIFEST 파일이 뭔가..???? 아.. 왤케 괴롭히는가 나를.. 그래서 찾아봤다.. manifest 파일은 runtime dependencies of this application on Visual C++ libraries를 describe하는 거라고 한다. (by msdn) 뭔 말인고 하니.. Visual C++ 라이브러리를 사용하는 실행파일의 런타임 때의 라이브러리 의존성에 관한 기술을 하는 xml파일이다. 한 마디로 이 프로그램이 어떤 라이브러리를 쓰는가에 대한 기술을 하고 있는 놈. 자세한 건 여기 설명 쭉~
2.4 포인터(Pointer) 1. 주소를 내용으로 가진다. 2. 주소가 가리키는 곳에 저장되어 있는 데이터 형(data type)을 알 수 있다. 1. 주소를 내용으로 가진다. 2. 주소가 가리키는 곳에 저장되어 있는 데이터 형(data type)을 알 수 없다. (그러므로, 형변환 연산자(casting operator)로 강제 형변환 후 일반 포인터 처럼 사용해야함) void *vptr; // void 타입의 포인터 vptr 선언 int i; i = *vptr; // 에러. vptr은 형을 알 수 없는 void 타입이다. i = *(int*)vptr; // vptr을 (int*)으로 형변환 한 후 vptr이 가리키고 있는 주소의 내용(*)을 i에 저장함 1. & (address of) : 변수의 주소를 구함 2. * (derefe..
요즘 새록새록한 것들~ WIN32 FLASH PHP 재밌네.. 감당 못할줄 알았는뒈.. ㅋ
네트워크 UDP 홀 펀칭(Hole Punching) Shinobi의 블로그 | 혀니 http://blog.naver.com/shinobi82/140037131797 네트워크 응용 수업의 최종과제가 홀펀칭(Hole Punching) 기술로 구현한 에코 클라이언트의 구현이라, 게임프로그래밍이나 여러 P2P 프로그래밍에서 폭넓게 사용되는 기술이라고 한다. 일단은 프로그래밍을 해야 하는데 생소한 정보들이여서 몇몇 관련문서를 보고 이해를 하려고 노력해 보았다. 0. 들어가기 전 알아두어야 할 용어들. - NAT [Network Address Translation] OSI 모델의 3계층인 네트워크 계층에서 사설 IP 주소를 공인 IP 주소로 변환하는데 사용하는 통신망의 주소 변환기. http://100.naver.com/100.nhn?docid=717874 우리가 ..
Internet Explorer In Game * SetWindowLong() - 윈도우 스타일 정보를 따로 메모리를 잡지 않고 저장하는 함수.. * GetWindowLong() - 저장된 걸 32bit DWORD값으로 가져오는거.. * 팁 : SetWindowLong(hEdt, GWL_STYLE, GetWindowLong(hEdt, GWL_STYLE) & ~(ES_MULTILINE)); : 요건 기존에 저장된 스타일에 추가되는것만 입력하는거.. * WS_CLIPCHILDREN - 차일드가 위치한 영역은 그리기 영역에서 제외된다. * WS_CLIPSIBLINGS - 차일드끼리 상호 겹친 영역은 그리기 영역에서 제외된다. * InvaildateRect() - 새로 그려야할 영역이 런타임에 있지 않으면 굳이 안 해줘도 됨.. * 중간에 컨..
What Is the ATL Control-Hosting API? http://msdn.microsoft.com/en-us/library/bk2e31we(VS.71).aspx ATL's control-hosting API is the set of functions that allows any window to act as an ActiveX control container. These functions can be statically or dynamically linked into your project since they are available as source code and exposed by ATL71.dll. The control-hosting functions are listed in the table below. (ATL's control-hosting ..