@@ -38,7 +38,7 @@ public class Errors
38
38
/// A <see cref="IntPtr"/>pointer to the user data provided in the handler callback.
39
39
/// </param>
40
40
/// <param name="handler">
41
- /// A <see cref="virErrorFunc "/>function to get called in case of error or NULL
41
+ /// A <see cref="ErrorFunc "/>function to get called in case of error or NULL
42
42
/// </param>
43
43
[ DllImport ( "libvirt-0.dll" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "virConnSetErrorFunc" ) ]
44
44
public static extern void ConnSetErrorFunc ( IntPtr conn , IntPtr userData , [ MarshalAs ( UnmanagedType . FunctionPtr ) ] ErrorFunc handler ) ;
@@ -49,7 +49,7 @@ public class Errors
49
49
/// One will need to free the result with virResetError().
50
50
/// </summary>
51
51
/// <param name="to">
52
- /// A <see cref="virError "/> target to receive the copy.
52
+ /// A <see cref="Error "/> target to receive the copy.
53
53
/// </param>
54
54
/// <returns>
55
55
/// 0 if no error was found and the error code otherwise and -1 in case of parameter error.
@@ -61,7 +61,7 @@ public class Errors
61
61
/// Default routine reporting an error to stderr.
62
62
/// </summary>
63
63
/// <param name="err">
64
- /// A <see cref="virError "/> pointer to the error.
64
+ /// A <see cref="Error "/> pointer to the error.
65
65
/// </param>
66
66
[ DllImport ( "libvirt-0.dll" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "virDefaultErrorFunc" ) ]
67
67
public static extern void DefaultErrorFunc ( [ In ] Error err ) ;
@@ -70,7 +70,7 @@ public class Errors
70
70
/// Resets and frees the given error.
71
71
/// </summary>
72
72
/// <param name="err">
73
- /// A <see cref="virError "/> error to free.
73
+ /// A <see cref="Error "/> error to free.
74
74
/// </param>
75
75
[ DllImport ( "libvirt-0.dll" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "virFreeError" ) ]
76
76
public static extern void FreeError ( Error err ) ; // Does not work, anybody know why?
@@ -89,7 +89,7 @@ public class Errors
89
89
/// Reset the error being pointed to.
90
90
/// </summary>
91
91
/// <param name="err">
92
- /// A <see cref="virError "/> pointer to the to clean up.
92
+ /// A <see cref="Error "/> pointer to the to clean up.
93
93
/// </param>
94
94
[ DllImport ( "libvirt-0.dll" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "virResetError" ) ]
95
95
public static extern void ResetError ( Error err ) ;
@@ -105,7 +105,7 @@ public class Errors
105
105
/// Save the last error into a new error object.
106
106
/// </summary>
107
107
/// <returns>
108
- /// A <see cref="virError "/> pointer to the copied error or NULL if allocation failed.
108
+ /// A <see cref="Error "/> pointer to the copied error or NULL if allocation failed.
109
109
/// It is the caller's responsibility to free the error with virFreeError().
110
110
/// </returns>
111
111
[ DllImport ( "libvirt-0.dll" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "virSaveLastError" ) ]
@@ -119,7 +119,7 @@ public class Errors
119
119
/// A <see cref="IntPtr"/>pointer to the user data provided in the handler callback.
120
120
/// </param>
121
121
/// <param name="handler">
122
- /// A <see cref="virErrorFunc "/>function to get called in case of error or NULL.
122
+ /// A <see cref="ErrorFunc "/>function to get called in case of error or NULL.
123
123
/// </param>
124
124
[ DllImport ( "libvirt-0.dll" , CallingConvention = CallingConvention . Cdecl , EntryPoint = "virSetErrorFunc" ) ]
125
125
public static extern void SetErrorFunc ( IntPtr userData , [ MarshalAs ( UnmanagedType . FunctionPtr ) ] ErrorFunc handler ) ;
0 commit comments