// Create a new sender instance. This will return NULL if it fails. public static IntPtr send_create(ref send_create_t p_create_settings) { if (IntPtr.Size == 8) { return(UnsafeNativeMethods.send_create_64(ref p_create_settings)); } else { return(UnsafeNativeMethods.send_create_32(ref p_create_settings)); } }
internal static extern IntPtr send_create_32(ref send_create_t p_create_settings);
public static extern IntPtr send_create(ref send_create_t p_create_settings);