/
magnusroot
/
flutter
Обзор
Документация
Войти
/
magnusroot
/
flutter
Код
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
dev/integration_tests/link_hook/src/link_hook.h
23 строки
513 B
Michael Goderbauer
Bump ffigen (#180507)
12 янв 2026, 12:40
Не верифицирован
12 янв 2026, 12:40
f95a985
Код
Авторство
О чём код?
// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <stdint.h> #include <stdio.h> #include <stdlib.h> #if _WIN32 #include <windows.h> #else #include <pthread.h> #include <unistd.h> #endif #if _WIN32 #define FFI_PLUGIN_EXPORT __declspec(dllexport) #else #define FFI_PLUGIN_EXPORT #endif // A very short-lived native function. FFI_PLUGIN_EXPORT intptr_t difference(intptr_t a, intptr_t b);