VLC_Prefix.pch 466 B

12345678910111213141516171819202122232425262728
  1. //
  2. // Prefix header for all source files of the 'VLC' target in the 'VLC' project.
  3. //
  4. #ifdef __OBJC__
  5. # import <Cocoa/Cocoa.h>
  6. #endif
  7. #ifdef HAVE_CONFIG_H
  8. # include "config.h"
  9. #endif
  10. #include <vlc/vlc.h>
  11. #include <vlc/libvlc_structures.h>
  12. #include <vlc/libvlc.h>
  13. #ifndef NDEBUG
  14. #define VKLog(format, ...) NSLog(format, ## __VA_ARGS__)
  15. #else
  16. #define VKLog(format, ...)
  17. #endif
  18. #ifndef N_
  19. #define N_(str) gettext_noop(str)
  20. #define gettext_noop(str) (str)
  21. #endif