3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-02 09:20:22 +00:00

fixed update_api.py

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-17 23:13:43 -07:00
parent 15fb18c65d
commit 9cb29777e2
4 changed files with 515 additions and 474 deletions

View file

@ -862,6 +862,15 @@ namespace Microsoft.Z3
[DllImport(Z3_DLL_NAME, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public extern static Z3_ast Z3_func_entry_get_arg(Z3_context a0, Z3_func_entry a1, uint a2);
[DllImport(Z3_DLL_NAME, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public extern static int Z3_open_log(string a0);
[DllImport(Z3_DLL_NAME, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public extern static void Z3_append_log(string a0);
[DllImport(Z3_DLL_NAME, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public extern static void Z3_close_log();
[DllImport(Z3_DLL_NAME, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public extern static void Z3_toggle_warning_messages(int a0);
@ -3608,6 +3617,19 @@ namespace Microsoft.Z3
return r;
}
public static int Z3_open_log(string a0) {
int r = LIB.Z3_open_log(a0);
return r;
}
public static void Z3_append_log(string a0) {
LIB.Z3_append_log(a0);
}
public static void Z3_close_log() {
LIB.Z3_close_log();
}
public static void Z3_toggle_warning_messages(int a0) {
LIB.Z3_toggle_warning_messages(a0);
}