static extern bool BASS_WMA_EncodeSetTag(int Handle, string Tag, string Value, WMATagFormat Format = WMATagFormat.Unicode);
static extern bool BASS_WMA_EncodeSetTag(int Handle, string Tag, IntPtr Value, WMATagFormat Format);
static extern bool BASS_WMA_EncodeSetTag(int Handle, string Tag, [In, Out] byte[] Value, WMATagFormat Format);
public static extern bool EncodeSetTag(int Handle, IntPtr Tag, IntPtr Value, WMATagFormat Format);