หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'idl_module': only the 'name' property is allowed here
Remarks
idl_module usage directly on a function declaration cannot have any parameters other than name.
Example
The following example generates C3371:
// C3371.cpp
[idl_module(name="Name", dllname="Some.dll")];
[idl_module(name="Name", helpstring="Some help")] // C3371
int f1();
// try
// [idl_module(name="Name")]
// int f1();
int main()
{
}