/// <summary> /// Returns information like version numbers (both of the DLL and encoding engine), /// release date and URL for lame_enc's homepage. /// All this information should be made available to the user of your product /// through a dialog box or something similar. /// </summary> /// <param name="pbeVersion"Where version number, release date and URL for homepage /// is returned.</param> public static void beVersion([Out] BE_VERSION pbeVersion) { if (is32bit) { Lame86.beVersion(pbeVersion); } else { Lame64.beVersion(pbeVersion); } }
internal static extern void beVersion([Out] BE_VERSION pbeVersion);