File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/MsieJavaScriptEngine/JsRt Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,13 +81,13 @@ internal static extern JsErrorCode JsSetRuntimeMemoryAllocationCallback(EdgeJsRu
81
81
internal static extern JsErrorCode JsSetRuntimeBeforeCollectCallback ( EdgeJsRuntime runtime ,
82
82
IntPtr callbackState , JsBeforeCollectCallback beforeCollectCallback ) ;
83
83
84
- [ DllImport ( DllName . Chakra , CallingConvention = DefaultCallingConvention , EntryPoint = "JsAddRef" ) ]
84
+ [ DllImport ( DllName . Chakra , EntryPoint = "JsAddRef" , CallingConvention = DefaultCallingConvention ) ]
85
85
internal static extern JsErrorCode JsContextAddRef ( EdgeJsContext reference , out uint count ) ;
86
86
87
87
[ DllImport ( DllName . Chakra , CallingConvention = DefaultCallingConvention ) ]
88
88
internal static extern JsErrorCode JsAddRef ( EdgeJsValue reference , out uint count ) ;
89
89
90
- [ DllImport ( DllName . Chakra , CallingConvention = DefaultCallingConvention , EntryPoint = "JsRelease" ) ]
90
+ [ DllImport ( DllName . Chakra , EntryPoint = "JsRelease" , CallingConvention = DefaultCallingConvention ) ]
91
91
internal static extern JsErrorCode JsContextRelease ( EdgeJsContext reference , out uint count ) ;
92
92
93
93
[ DllImport ( DllName . Chakra , CallingConvention = DefaultCallingConvention ) ]
Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ internal static extern JsErrorCode JsSetRuntimeMemoryAllocationCallback(IeJsRunt
82
82
internal static extern JsErrorCode JsSetRuntimeBeforeCollectCallback ( IeJsRuntime runtime ,
83
83
IntPtr callbackState , JsBeforeCollectCallback beforeCollectCallback ) ;
84
84
85
- [ DllImport ( DllName . JScript9 , CallingConvention = DefaultCallingConvention , EntryPoint = "JsAddRef" ) ]
85
+ [ DllImport ( DllName . JScript9 , EntryPoint = "JsAddRef" , CallingConvention = DefaultCallingConvention ) ]
86
86
internal static extern JsErrorCode JsContextAddRef ( IeJsContext reference , out uint count ) ;
87
87
88
88
[ DllImport ( DllName . JScript9 , CallingConvention = DefaultCallingConvention ) ]
89
89
internal static extern JsErrorCode JsAddRef ( IeJsValue reference , out uint count ) ;
90
90
91
- [ DllImport ( DllName . JScript9 , CallingConvention = DefaultCallingConvention , EntryPoint = "JsRelease" ) ]
91
+ [ DllImport ( DllName . JScript9 , EntryPoint = "JsRelease" , CallingConvention = DefaultCallingConvention ) ]
92
92
internal static extern JsErrorCode JsContextRelease ( IeJsContext reference , out uint count ) ;
93
93
94
94
[ DllImport ( DllName . JScript9 , CallingConvention = DefaultCallingConvention ) ]
You can’t perform that action at this time.
0 commit comments