mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-14 20:34:55 -05:00
8 lines
165 B
C
8 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
|