added basic gtk configuration file. it's not complete. It just contains some data that was extracted from the cppcheck checks.
This commit is contained in:
parent
2ef0a40aec
commit
02a2551282
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0"?>
|
||||
<def>
|
||||
<memory>
|
||||
<dealloc>g_free</dealloc>
|
||||
|
||||
<alloc>g_new</alloc>
|
||||
<alloc>g_new0</alloc>
|
||||
<alloc>g_try_new</alloc>
|
||||
<alloc>g_try_new0</alloc>
|
||||
<alloc>g_malloc</alloc>
|
||||
<alloc>g_malloc0</alloc>
|
||||
<alloc>g_try_malloc</alloc>
|
||||
<alloc>g_try_malloc0</alloc>
|
||||
<alloc>g_strdup</alloc>
|
||||
<alloc>g_strndup</alloc>
|
||||
<alloc>g_strdup_printf</alloc>
|
||||
|
||||
<use>g_register_data</use>
|
||||
</memory>
|
||||
|
||||
<ignore>g_strcmp</ignore>
|
||||
<noreturn>g_exit</noreturn>
|
||||
</def>
|
||||
|
Loading…
Reference in New Issue