File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -222,17 +222,17 @@ internal static T LoadFunction<T>(string function) where T : Delegate {
222222 return result ;
223223 }
224224
225- [ DllImport ( "kernel32" , SetLastError = true , CharSet = CharSet . Ansi ) ]
226- private static extern IntPtr LoadLibrary (
227- [ MarshalAs ( UnmanagedType . LPStr ) ] string lpFileName ) ;
228-
229225 [ DllImport ( "kernel32" , SetLastError = true , CharSet = CharSet . Ansi ) ]
230226 private static extern bool FreeLibrary ( IntPtr hLibModule ) ;
231227
232228 [ DllImport ( "kernel32" , SetLastError = true , CharSet = CharSet . Ansi ) ]
233229 private static extern IntPtr GetProcAddress (
234230 IntPtr hModule , [ MarshalAs ( UnmanagedType . LPStr ) ] string lpProcName ) ;
235231
232+ [ DllImport ( "kernel32" , SetLastError = true , CharSet = CharSet . Ansi ) ]
233+ private static extern IntPtr LoadLibrary (
234+ [ MarshalAs ( UnmanagedType . LPStr ) ] string lpFileName ) ;
235+
236236 [ DllImport ( "dl" ) ]
237237 private static extern int dlclose ( IntPtr handle ) ;
238238
You can’t perform that action at this time.
0 commit comments