Summary: When building and using C # libraries, EntryPointNotFoundException thrown from YGInteropSetLogger. so, I added YOGA_EXPORT on YGInteropSetLogger. Pull Request resolved: https://github.com/facebook/yoga/pull/960 Reviewed By: yungsters Differential Revision: D40027238 Pulled By: yungsters fbshipit-source-id: 6af584a16e66a31c91374a1bb64434888762e3c8
31 lines
776 B
C++
31 lines
776 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "YGInterop.h"
|
|
|
|
static YGInteropLogger gManagedLogger;
|
|
|
|
static int unmanagedLogger(
|
|
const YGConfigRef config,
|
|
const YGNodeRef node,
|
|
YGLogLevel level,
|
|
const char* format,
|
|
va_list args) {
|
|
int result = 0;
|
|
if (gManagedLogger) {
|
|
char message[8192];
|
|
result = vsnprintf(message, sizeof(message), format, args);
|
|
(*gManagedLogger)(config, node, level, message);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
YOGA_EXPORT void YGInteropSetLogger(YGInteropLogger managedLogger) {
|
|
gManagedLogger = managedLogger;
|
|
YGConfigSetLogger(YGConfigGetDefault(), &unmanagedLogger);
|
|
}
|