반응형

MFC 전역함수



함수명

설명

AfxGeApp()

Application객체의 포인터 리턴

AfxGetMainWnd()

MainFram객체의 포인터 리턴
( Main Thread외의 Thread에서 호출하면 NULL이 리턴된다. )
이때는 다음 코드를 사용 : AfxGetApp()->GetMainWnd();

AfxGetAppName()

Application 이름 리턴

AfxGetInstancehandle()

Application Instance 핸들 리턴

AfxOleInit()

Ole환경 초기화

AfxMessageBox()

 

 

 

 

반응형

'Windows Programming' 카테고리의 다른 글

듀얼 모니터에서의 좌표값 확인  (1) 2008.07.04
COM DLL만으로 tlb파일 생성및 COM사용하기  (0) 2008.04.28
Afx의 의미  (0) 2008.04.14
스크린 크기 구하기  (0) 2008.04.02
[MFC] Windows Control 제어  (0) 2008.03.31
반응형

Watch window formatting Symbols

변수의 값을 확인하기 위해 사용하는 VC++Watch Window에서 변수의 값을 원하는 형태로 출력하는 Formatting Symbol에 대해 정리합니다.

 

n  Number

Symbol

Format

d,i

signed decimal integer

u

unsigned decimal integer

o

unsigned octal integer

x,X

Hexadecimal integer


 

n  String

Symbol

Format

s

String

su

Unicode string

st

Unicode string or ANSI string, depending on Unicode Strings setting in autoexp.dat.



 

n  Memory

Symbol

Format

ma

64 ASCII characters

m

16 bytes in hexadecimal, followed by 16 ASCII characters

mb

16 bytes in hexadecimal, followed by 16 ASCII characters

mw

8 words

md

4 doublewords

mq

4 quadwords

mu

2-byte characters (Unicode)

 

 

 

 

 

 

 


 

n  상수

Symbol

Format

hr

HRESULT Code

wm

Window Message

 

 

 




 

n  기타

Symbol

Format

@err

LastErrorCode

@eax

Register Value

 

 


반응형

+ Recent posts