~ubuntu-branches/ubuntu/wily/mupen64plus-ui-console/wily

« back to all changes in this revision

Viewing changes to src/osal_preproc.h

  • Committer: Package Import Robot
  • Author(s): Sven Eckelmann
  • Date: 2015-05-01 16:42:54 UTC
  • mfrom: (1.2.3) (4.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20150501164254-mrvd5n7om3hg1uc0
Tags: 2.5-1
* New Upstream Version
* Upload to unstable
* Install mupen64plus.desktop to associate application/x-n64-rom files with
  mupen64plus-ui-console
* Upgraded to policy 3.9.6, no changes required
* debian/copyright:
  - Update years in debian/copyright
  - Add new files to debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#if defined(WIN32)
30
30
 
31
31
  #include <windows.h>
 
32
 
32
33
  #define PATH_MAX 2048
33
34
  #define OSAL_DEFAULT_DYNLIB_FILENAME "mupen64plus.dll"
34
35
  #define OSAL_DIR_SEPARATOR           '\\'
39
40
#elif defined(__APPLE__)
40
41
 
41
42
  #include <limits.h>  // for PATH_MAX
 
43
 
42
44
  #define OSAL_DEFAULT_DYNLIB_FILENAME "libmupen64plus.dylib"
43
45
  #define OSAL_DIR_SEPARATOR           '/'
44
46
  #define OSAL_CURRENT_DIR             "./"
47
49
 
48
50
#else  /* Linux-like UNIX */
49
51
 
 
52
  #if defined(ANDROID)
 
53
    #include <android/log.h>
 
54
 
 
55
    #define printf(...) __android_log_print(ANDROID_LOG_VERBOSE, "UI-Console", __VA_ARGS__)
 
56
  #endif
 
57
 
50
58
  #include <limits.h>  // for PATH_MAX
 
59
 
51
60
  #define OSAL_DEFAULT_DYNLIB_FILENAME "libmupen64plus.so.2"
52
61
  #define OSAL_DIR_SEPARATOR           '/'
53
62
  #define OSAL_CURRENT_DIR             "./"