컴파일러 오류 C2193
'identifier': 세그먼트에 이미 있습니다.
함수는 pragma를 사용하여 alloc_text
code_seg
두 개의 서로 다른 세그먼트에 배치되었습니다.
다음 샘플에서는 C2193을 생성합니다.
// C2193.cpp
// compile with: /c
extern "C" void MYFUNCTION();
#pragma alloc_text(MYCODE, MYFUNCTION)
#pragma code_seg("MYCODE2")
extern "C" void MYFUNCTION() {} // C2193
extern "C" void MYFUNCTION2() {}