public static IntPtr recv_create(ref recv_create_t p_create_settings)
 {
     if (IntPtr.Size == 8)
     {
         return(UnsafeNativeMethods.recv_create_64(ref p_create_settings));
     }
     else
     {
         return(UnsafeNativeMethods.recv_create_32(ref p_create_settings));
     }
 }
 internal static extern IntPtr recv_create_32(ref recv_create_t p_create_settings);