You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first function attribute requires the second attribute.
14
14
15
-
### To fix by checking the following possible causes
16
-
17
-
1. Interrupt (`__interrupt`) function declared as `near`. Interrupt functions must be `far`.
18
-
19
-
1. Interrupt function declared with **`__stdcall`**, or **`__fastcall`**. Interrupt functions must use C calling conventions.
20
-
21
15
## Example
22
16
23
-
C2217 can also occur if you attempt to bind a delegate to a CLR function that takes a variable number of arguments. If the function also has e param array overload, use that instead. The following sample generates C2217.
17
+
C2217 can occur if you attempt to bind a delegate to a CLR function that takes a variable number of arguments. If the function also has a param array overload, use that instead. The following sample generates C2217.
0 commit comments