mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-07 12:42:00 -05:00
12 lines
325 B
C++
12 lines
325 B
C++
#include <precomp.h>
|
|
#include "svc_stringconverter.h"
|
|
|
|
#define CBCLASS svc_stringConverterI
|
|
START_DISPATCH
|
|
CB(CANCONVERT, canConvert);
|
|
CB(CONVERTTOUTF8, convertToUTF8);
|
|
CB(PREFLIGHTTOUTF8, preflightToUTF8);
|
|
CB(CONVERTFROMUTF8, convertFromUTF8);
|
|
CB(PREFLIGHTFROMUTF8, preflightFromUTF8);
|
|
END_DISPATCH
|
|
#undef CBCLASS
|