0xCCCCCCCC 지역 변수가 초기화 되지 않았을 경우 발생
 
0xCDCDCDCD 힙에 할당된 메모리임.. 초기화 되지 않았을 경우 발생
 
0xDDDDDDDD 
0xFEEEFEEE 힙에서 Free된 메모리임. Free된 메모리를 사용할 때 발생됨
 
0xFDFDFDFD 할당에서 벗어난 heap 공간을 사용할 경우 발생됨
 HDC hdc = ::GetDC(hWnd); 
CDC *pDC = CDC::FromHandle(hdc); 

 HDC hdc = ::GetDC(this->m_hWnd);
가희.. 나희가 내가 잘때 옆에서 잘때..

그리고 피곤한 나희가 자는 모습...

01234

- Cximage api에 대해 잘 정리해 놓은것 퍼와서 편집함...
http://katalog.egloos.com/tb/2626276

A. CxImage classes
1. CxPoint2

2. CxRect2 


3. CxFile
추상클래스로 CxIOFile, CxMemFile의 부모 클래스가 된다. 

4. CxIOFile 

5. CxMemFile 
메모리 상에서 파일 입출력의 형태를 구현한 것이다. 



6. CxImage 


요즘 계속 늦었다..

여러 일들이 자꾸 꼬이고...
잠도 잘 못 자고.. (요즘은 곗속 3~4 시간만 자는듯,,,)

그냥 일도 하기 싫어서 일찍 왔다...

일짝 와서 애들하고 간만에 놀아주고,..  식사도 같이하고..

이게 정상인데... 이상하게 잘 안 되네..'

힘내자....
01234


warning C4996: 'mbstowcs': This function or variable may be unsafe. Consider using mbstowcs_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

에러 발생시 변경방법

변경전 소스(Warning 발생)

wchar_t* CharToWChar(const char* pstrSrc)
{
    ASSERT(pstrSrc);
    int nLen = strlen(pstrSrc)+1;

    wchar_t* pwstr      = (LPWSTR) malloc ( sizeof( wchar_t )* nLen);
        
size_t ConvertedChars = 0;
    mbstowcs(pwstr, pstrSrc, nLen);
    return pwstr;    
}

변경후 소스

wchar_t* CharToWChar(const char* pstrSrc)
{
    ASSERT(pstrSrc);
    size_t nLen = strlen(pstrSrc)+1; // Warning 4996 방지..

    wchar_t* pwstr      = (LPWSTR) malloc ( sizeof( wchar_t )* nLen);
        
size_t ConvertedChars = 0;
mbstowcs_s(&ConvertedChars, pwstr, nLen, pstrSrc, _TRUNCATE); // Warning 4996 방지..
    return pwstr;    
}
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.

같은 에러 메시지가 나오는 부분을 보면

FILE *m_fp;
m_fp  = fopen(filename, mode);

로 되어 있을때 에러난다...

이럴때.. 밑줄 부분만... 다음과 같이 바꿔 주자...


fopen_s(&m_fp, filename, mode); // Warning C4996 방지
새로운 작업 환경을 꾸몄다. 

이제 사업 준비만 잘 하면 될듯...

아자아자~~~ 새로운 일을   위해 화이팅~~


'0.일상다반사 > 01.내 생각..' 카테고리의 다른 글

아이폰.. 테스트  (0) 2010.03.14
요즘....  (0) 2009.07.01
▶◀ 정치에 관심을 갖자....  (0) 2009.05.26

+ Recent posts