mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-24 12:00:11 +01:00
9 lines
165 B
C
9 lines
165 B
C
#pragma once
|
|
#ifdef __APPLE__
|
|
#include "osx/Scanner.h"
|
|
#elif defined(_WIN32)
|
|
#include "win/Scanner.h"
|
|
#elif defined(__ANDROID__)
|
|
#include "android/Scanner.h"
|
|
#endif
|