2022-10-04 13:59:32 -07:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2017-01-07 09:06:06 -08:00
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-01-07 09:06:06 -08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
namespace Facebook.Yoga
|
|
|
|
|
{
|
|
|
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
2017-05-03 09:22:35 -07:00
|
|
|
|
public delegate float YogaBaselineFunc(IntPtr unmanagedNodePtr, float width, float height);
|
2017-01-07 09:06:06 -08:00
|
|
|
|
}
|