Changeset 5837:96349d1c8634 in roaraudio for include


Ignore:
Timestamp:
01/06/13 23:33:14 (11 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Avoid %llX on win32 (Closes: #271)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/roaraudio/targethacks.h

    r5823 r5837  
    7777#endif 
    7878 
     79// funny printf() hacks: 
     80#ifdef ROAR_TARGET_WIN32 
     81#define LIBROAR__longlong long 
     82#define LIBROAR__ll       "l" 
     83#else 
     84#define LIBROAR__longlong long long 
     85#define LIBROAR__ll       "ll" 
     86#endif 
     87 
    7988#endif 
    8089 
Note: See TracChangeset for help on using the changeset viewer.