1234567891011121314151617181920212223242526 |
- //
- // Prefix header for all source files of the 'VLC' target in the 'VLC' project.
- //
- #ifdef __IPHONE_OS_VERSION_MIN_REQUIRED
- # define IPHONE_OS
- #endif
- #ifdef __OBJC__
- # ifndef IPHONE_OS
- # import <Cocoa/Cocoa.h>
- # else
- # import <UIKit/UIKit.h>
- # endif
- #endif
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <vlc/vlc.h>
- #include <vlc/libvlc_structures.h>
- #include <vlc/libvlc.h>
|