반응형

windows 8 integrity에 따른 공유메모리 사용시 (ACL) 문제

 

http://stackoverflow.com/questions/9589141/low-integrity-to-medium-high-integrity-pipe-security-descriptor

 

ACL 생성 (서로 다른 integrity간 통신관련)

http://msdn.microsoft.com/en-us/library/bb625960.aspx

 

About windows 8 app shared memory

http://blogs.microsoft.co.il/blogs/pavely/archive/2012/08/21/can-windows-8-apps-share-memory.aspx

 

pipe ace설정 관련

http://blogs.charteris.com/blogs/chrisdi/archive/2008/06/16/exploring-the-wcf-named-pipe-binding-part-2.aspx

 

http://stackoverflow.com/questions/3282365/opening-a-named-pipe-in-low-integrity-level-windows-7-c

 

S:(ML;;NW;;;LW)

S:(ML;;NW;;;LW)D:(A;;0x12019f;;;WD

S:(ML;;NW;;;LW)D:(A;;0x12019b;;;WD



반응형

About country code for language resorce

IT/개발관련 담기+ 2012. 12. 24. 17:31 Posted by Imtraveller
반응형

국가별 언어코드

http://blog.naver.com/PostView.nhn?blogId=baek2187&logNo=150090400150

반응형
반응형

 

프로퍼티쉬트의 캡션관련하여 조사를 하다가

자세한 내용을 참고사이트를 참조하면된다.

http://www.experts-exchange.com/Microsoft/Development/Q_27647181.html

 

PropertySheet class의 OnInitDialog에서 아래실행

GetDlgItem(IDOK)->SetWindowText(_T("OK"));

 

반응형

About Netowork debugging in Windows 8

IT/디버깅 2012. 12. 20. 14:30 Posted by Imtraveller
반응형

About Netowork debugging in Windows 8

 

http://www.sysnet.pe.kr/Default.aspx?mode=2&sub=0&detail=1&pageno=0&wid=1259&rssMode=1&wtype=0

반응형
반응형


Registry Change notification function in win32 AP

- 레지스트리의 변화를 체크해주는 함수

- 이 함수를 이용가능 할 듯

http://msdn.microsoft.com/en-us/library/windows/desktop/ms724892(v=vs.85).aspx



반응형

xmllite 파서에 대한 정보

IT/개발관련 담기+ 2012. 12. 14. 14:07 Posted by Imtraveller
반응형




 

xmllite xml parser

 

http://msdn.microsoft.com/ko-kr/magazine/cc163436.aspx

 

 

실제 프로젝트에 적용해보았다. DOM이 필요하지 않은 단순 파서로 사용하는 경우에 편리하게 사용할 수 있다. STL을 함께 사용한다면 DOM형태를 구성할 수도 있다.

메모리 자동관리 형태의 XML파서를 사용해보았는데 메모리관리에 문제가 있어 xmllite를 사용하기 시작했다.

 

[ms]xmllite.pdf

반응형
반응형

Adobe PDF Reader 구 버전 다운로드 할 수 있는 주소

http://get.adobe.com/kr/reader/otherversions/

반응형

'IT > 주워담기' 카테고리의 다른 글

[MS]테스트용 VPC 다운로드 사이트  (0) 2012.01.05
[펌]win7 send to menu  (0) 2011.01.27
[펌]msi installer custom action return value  (0) 2010.10.21

gnu 라이센스 관련 정보

IT/라이센스관련 2012. 12. 13. 09:56 Posted by Imtraveller
반응형

 

GPL의 의미 등

http://www.gnu.org/licenses/gpl-faq.ko.html

반응형

'IT > 라이센스관련' 카테고리의 다른 글

GPLv2 포함된 제품 배포 관련  (0) 2013.09.16
About WinHTTP SSL communication  (0) 2013.04.11
반응형

Windows 2K이상에서 지원하는 파일 포맷이다.

파일을 생성할 때 전체의 크기를 할당하지 않고 실제 데이터가 존재하는 영역만 생성하고 파일에 정보가 추가되면 그때 파일을 확장하는 형태로 작성된다.

 

파일의 실제 disk에서 차지하는 공간을 효율적으로 지정할 수 있다.

 

실제 파일에 써질때 블럭이 할당되므로 디스크를 효율적으로 사용 할 수 있다. 다만 파일에 실제로 기록될때에 disk에 위치가 기록되는 것이 다르다. 어느위치에 기록될지는 실제 기록하는 시점에서 결정되는것이다.

 

- fsutil.exe를 사용하여 생성

 

 ex) fsutil file createnew FileDisk.dat 10240000000

       fsutil  Sparse SetFlag FileDisk.dat

       fsutil  Sparse SetRange FileDisk.dat 0 10240000000

 

ex2) FSUtil File CreateNew temp 0x100000
       FSUtil Sparse SetFlag temp
       FSUtil Sparse SetRange temp 0 0x100000

 

10Gbytes의 sparse 파일 생성

 

관련 URL

http://blog.naver.com/PostView.nhn?blogId=kyuniitale&logNo=40038408049&parentCategoryNo=55&viewDate=&currentPage=1&listtype=0

 

프로그램적으로 스파스 파일 생성방법

http://www.benjaminlog.com/entry/sparse-file

 

fsutil 사용법

http://hosts.tistory.com/206

 

 

http://superuser.com/questions/314310/how-to-create-1g-zeroed-sparse-file-in-windows



반응형

Get NtSystemInfo in User Land

IT/시스템프로그래밍 2012. 11. 7. 09:31 Posted by Imtraveller
반응형

Get NtSystemInfo in User Land

 

- 각종 OPen Handle정보(file, event....)

- 로드한 모듈 정보

- Window 정보

- Process and Thread

 

Examine Information on Windows NT System Level Primitives

http://www.codeguru.com/cpp/w-p/system/processesmodules/article.php/c2827/Examine-Information-on-Windows-NT-System-Level-Primitives.htm

 

 

ntsysteminfo.zip



반응형