Esempio n. 1
0
 internal static extern void StoreBAInCreateResults(
     IntPtr pResults,
     [MarshalAs(UnmanagedType.Interface)] IBootstrapperApplication pBA
     );
 /// <summary>
 /// Registers the BA with the engine using the default mapping between the message based interface and the COM interface.
 /// Most users should inherit from <see cref="BaseBootstrapperApplicationFactory"/> instead of calling this method.
 /// </summary>
 /// <param name="pResults">The results struct given by the engine when initially creating the BA</param>
 /// <param name="ba">The <see cref="IBootstrapperApplication"/>.</param>
 public static void StoreBAInCreateResults(IntPtr pResults, IBootstrapperApplication ba)
 {
     BalUtil.StoreBAInCreateResults(pResults, ba);
 }