블로그 이미지
fiadot_old

칼퇴근을 위한 게임 서버 개발 방법론에 대한 심도있는 고찰 및 성찰을 위한 블로그!

Rss feed Tistory
Technical Article/펌 2005. 3. 24. 16:45

화면 잠그기

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력해주세요.

Technical Article/펌 2005. 3. 17. 18:09

UNICODE사용에 관한 FAQ

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력해주세요.

Technical Article/펌 2005. 3. 17. 18:07

TRACE 한 위치 찾아가는 매크로

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력해주세요.

Technical Article/펌 2005. 3. 12. 10:32

[MSDN] Standard C++ Library Reference

Standard C++ Library Reference

Thread Safety in the Standard C++ Library
When /MT, /MTd, /MD, or /MDd is used, the following thread-safety rules are in effect:

Container Classes (vector, deque, list, queue, stack , priority_queue, valarray, map, multimap, set, multiset, basic_string, bitset) and complex
For reads to the same object, the object is thread safe for reading:

From one thread at a time when no writers on other threads.
From many threads at a time when no writers on other threads.
For writes to the same object, the object is thread safe for writing from one thread when no readers on other threads

For reads to different objects of the same class, the object is thread safe for reading:

From one thread at a time.
From one thread at a time when no writers on other threads.
From many threads at a time.
From many threads at a time when no writers on other threads.
For writes to different objects of the same class, the object is thread safe for writing:

From one thread when no readers on other threads.
From many threads.
iostream Classes
Note that reading from a stream buffer is not considered to be a read operation. It should be considered as a write operation, because this changes the state of the class.

For reads to the same object, the object is thread safe for reading:

From one thread at a time when no writers on other threads.
From many threads at a time when no writers on other threads.
For writes to the same object, , the object is thread safe for writing:

From one thread when no readers on other threads.
From many threads (when accesses are limited to stream buffers).
For reads to different objects of the same class, , the object is thread safe for reading:

From one thread at a time.
From one thread at a time when no writers on other threads.
From many threads at a time.
From many threads at a time when no writers on other threads.
For writes to different objects of the same class, the object is thread safe for writing:

From one thread when no readers on other threads
From many threads
See Also
iostream Programming


http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcstdlib/html/vclrfThreadSafetyInStandardCLibrary.asp
,
Technical Article/펌 2005. 2. 19. 17:52

문자열중에 한글자가 포함된거 찾기 쿼리

SELECT *, TITLE_ENG AS Expr1
FROM RT_MASTER
WHERE (TITLE_ENG LIKE '%(%')

% 는 0개이상의 문자 *에 해당
문자열중에 '(' 있는거 찾기

,
Technical Article/펌 2005. 2. 16. 09:45

NT계열 소켓 최대수 5000개 미만(레지수정요망!)

참고로 NT System의 TCP에서의 소켓의 갯수는 5000개 미만입니다
즉 5000개 미만으로 제한되어 있다는거죠
이 수는 레지스트리 수정으로 변경할 수 있습니다.
HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\MaxUserPort 이 부분을 수정하시면 됩니다.
,
Technical Article/펌 2005. 1. 28. 14:50

[팁]유니코드 완성형에서 초중종성 분리하기...

제 목 [팁]유니코드 완성형에서 초성, 중성, 종성 분리하기... 7022 0 kunabomb@empal.com 7022 0 0
작 성 자 유인환(kunabomb)
작성시각 2005-01-27 오후 5:29:42 조 회 수 167
글 분 류 VC++ 일반


출처 : 데브피아
,
Technical Article/펌 2005. 1. 17. 18:10

VC++7 to VC++6 project converter

VC++7 to VC++6 project converter

http://www.codeproject.com/tools/prjconverter.asp?target=convert%7Csolution%7Cproject



Loading JPG & PNG resources using GDI+
http://www.codeproject.com/vcpp/gdiplus/cgdiplusbitmap.asp?df=100&forumid=14113&exp=0&select=799671&fr=51
,
Technical Article/펌 2004. 12. 8. 18:04

찾아볼꺼~ DBGUID_DBSQL

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력해주세요.

Technical Article/펌 2004. 12. 8. 10:22

#pragma pack(n)

#pragma pack(1)

구조체

#pragma pack()
,
TOTAL TODAY