หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'keyword' : cannot modify pointers to data
Remarks
The __stdcall, __cdecl, or __fastcall keyword attempts to modify a pointer to data.
Example
The following example generates C2165:
// C2165.cpp
// compile with: /c
char __cdecl *p; // C2165
char *p; // OK