12345678910111213141516171819202122232425262728 |
- //
- // Prefix header for all source files of the 'VLC' target in the 'VLC' project.
- //
- #ifdef __OBJC__
- # import <Cocoa/Cocoa.h>
- #endif
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <vlc/vlc.h>
- #include <vlc/libvlc_structures.h>
- #include <vlc/libvlc.h>
- #ifndef NDEBUG
- #define VKLog(format, ...) NSLog(format, ## __VA_ARGS__)
- #else
- #define VKLog(format, ...)
- #endif
- #ifndef N_
- #define N_(str) gettext_noop(str)
- #define gettext_noop(str) (str)
- #endif
|