379f8cac14
TEST=local build Change-Id: I32e400efb0f6d5e41b894f495ae2e77352f6f5fa Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/332142 Reviewed-by: Daco Harkes <dacoharkes@google.com> Commit-Queue: Daco Harkes <dacoharkes@google.com>
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
// for details. 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 <stdlib.h>
|
|
#include <string.h>
|
|
#include <iostream>
|
|
|
|
#if defined(_WIN32)
|
|
#define DART_EXPORT extern "C" __declspec(dllexport)
|
|
#else
|
|
#define DART_EXPORT \
|
|
extern "C" __attribute__((visibility("default"))) __attribute((used))
|
|
#endif
|
|
|
|
DART_EXPORT intptr_t return42() {
|
|
return 42;
|
|
}
|
|
|
|
DART_EXPORT double timesFour(double d) {
|
|
return d * 4.0;
|
|
}
|
|
|
|
// Wrap memmove so we can easily find it on all platforms.
|
|
//
|
|
// We use this in our samples to illustrate resource lifetime management.
|
|
DART_EXPORT void MemMove(void* destination, void* source, intptr_t num_bytes) {
|
|
memmove(destination, source, num_bytes);
|
|
}
|
|
|
|
// Some opaque struct.
|
|
typedef struct {
|
|
} some_resource;
|
|
|
|
DART_EXPORT some_resource* AllocateResource() {
|
|
void* pointer = malloc(sizeof(int64_t));
|
|
|
|
// Dummy initialize.
|
|
static_cast<int64_t*>(pointer)[0] = 10;
|
|
|
|
return static_cast<some_resource*>(pointer);
|
|
}
|
|
|
|
DART_EXPORT void UseResource(some_resource* resource) {
|
|
// Dummy change.
|
|
reinterpret_cast<int64_t*>(resource)[0] += 10;
|
|
}
|
|
|
|
DART_EXPORT void ReleaseResource(some_resource* resource) {
|
|
free(resource);
|
|
}
|