본문 바로가기

[패턴매칭] PCRE PCRE 헤더 및 DLL 더보기
CString에서 const char* 형식으로 형변환 CString strTest = _T("test");const char* cTest = (char*)(LPCTSTR)strTest 더보기
[Reversing 도움자료] Intel Opcode 00 ADD 01 ADD 02 ADD 03 ADD 04 ADD 05 ADD 06 PUSH 07 POP 08 OR 09 OR 0A OR 0B OR 0C OR 0D OR 0E PUSH 0F 00 LLDT 0F 00 LTR 0F 00 SLDT 0F 00 STR 0F 00 VERR 0F 00 VERW 0F 01 INVLPG 0F 01 LGDT 0F 01 LIDT 0F 01 LMSW 0F 01 SGDT 0F 01 SIDT 0F 01 SMSW 0F 01 SMSW 0F 02 LAR 0F 03 LSL 0F 08 INVD 0F 09 WBINVD 0F 0B UD2 0F 20 MOV 0F 21 MOV 0F 22 MOV 0F 23 MOV 0F 30 WRMSR 0F 31 RDTSC 0F 32 RDMSR 0F 33 RDPMC 0.. 더보기
CString, char*, int, long 문자형 변환 ******* CString -> int *******int형 = _ttoi(CString형); ******* int -> CString ******* CString형.Format(_T("%d"), int형); ******* CString의 atoi, itoa ******* itoa(int형, char형, 진수);int형 = atoi(char형); ******* CString -> char* ******* Cstring str; str = "hello"; char* ss = LPSTR(LPCTSTR(str)); ******* char* -> CString ******* char ss[] = "hello"; CString str; str.Format("%s", ss); (Format대신 GetBuffer(.. 더보기
[C++] BOOST 라이브러리 설치 --------------------------------------------------------------------------------------------boost c++ library homepage : http://www.boost.org/current version 1.35.0 and BOOST JAM 3.1.16 (2008/6/6 기준)http://www.boost.org/users/download/-------------------------------------------------------------------------------------------- CodeGear RAD Studio(C++ Builder 2007) 에서 부스트 라이브러리 설치하여 사용하기 현재 boost .. 더보기