Beispiel #1
0
 /// <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 (CPU.Is32Bit)
     {
         Lame86.beVersion(pbeVersion);
     }
     else
     {
         Lame64.beVersion(pbeVersion);
     }
 }