Update C sources
This commit is contained in:
parent
02424e2e10
commit
bd6bf15356
53 changed files with 62247 additions and 9914 deletions
|
@ -12,12 +12,12 @@ import (
|
|||
"os"
|
||||
)
|
||||
|
||||
// SetTraceLog - Enable trace log message types (bit flags based)
|
||||
// SetTraceLog - Enable trace log message types
|
||||
func SetTraceLog(typeFlags int) {
|
||||
logTypeFlags = typeFlags
|
||||
|
||||
ctypeFlags := (C.uchar)(typeFlags)
|
||||
C.SetTraceLog(ctypeFlags)
|
||||
ctypeFlags := (C.int)(typeFlags)
|
||||
C.SetTraceLogLevel(ctypeFlags)
|
||||
}
|
||||
|
||||
// TraceLog - Show trace log messages (INFO, WARNING, ERROR, DEBUG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue