หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'keyword' not allowed in function with 'naked' attribute
Remarks
A function defined as naked cannot use structured exception handling.
Example
The following example generates C2490:
// C2490.cpp
// processor: x86
__declspec( naked ) int func() {
__try{} // C2490, structured exception handling
}