project_files/Android-build/log.pas
author Vatten
Tue, 30 Oct 2012 18:01:11 -0400
branch0.9.18
changeset 7895 ac1610a7b7fa
parent 7890 7f3881b14a3f
child 10017 de822cd3df3a
permissions -rw-r--r--
apparently an older version was provided earlier and this one is newer and theoretically desync free. untested.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7890
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     1
unit log;
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     2
{$ifdef fpc}
5306
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
     3
 {$mode delphi}
7890
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     4
{$endif}
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     5
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     6
interface
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     7
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     8
const libname='liblog.so';
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
     9
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    10
      ANDROID_LOG_UNKNOWN=0;
5306
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    11
      ANDROID_LOG_DEFAULT=1;
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    12
      ANDROID_LOG_VERBOSE=2;
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    13
      ANDROID_LOG_DEBUG=3;
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    14
      ANDROID_LOG_INFO=4;
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    15
      ANDROID_LOG_WARN=5;
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    16
      ANDROID_LOG_ERROR=6;
b7c62722467d Added logging for Android
Xeli
parents:
diff changeset
    17
      ANDROID_LOG_FATAL=7;
7890
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    18
      ANDROID_LOG_SILENT=8;
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    19
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    20
type android_LogPriority=integer;
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    21
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    22
function __android_log_write(prio:longint;tag,text:pchar):longint; cdecl; external libname name '__android_log_write';
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    23
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    24
//function __android_log_print(prio:longint;tag,print:pchar;params:array of pchar):longint; cdecl; external libname name '__android_log_print';
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    25
  
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    26
implementation
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    27
7f3881b14a3f consistent line endings
nemo
parents: 5621
diff changeset
    28
end.