Sha256: 46a7ec9100b0b77501441214174be3c7790bc795a73c11832a5b30f95dfa9d51
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
/* * Copyright 2018-present MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef MONGOCRYPT_STATUS_PRIVATE_H #define MONGOCRYPT_STATUS_PRIVATE_H #include "mongocrypt.h" void _mongocrypt_status_copy_to (mongocrypt_status_t *src, mongocrypt_status_t *dst); void _mongocrypt_status_reset (mongocrypt_status_t *status); /* Append the message of @to_append in @status. * Example: * - @status has the message "status error" * - @to_append has the message "append error" * After calling, @status will have the message: "status error: append error" */ void _mongocrypt_status_append (mongocrypt_status_t *status, mongocrypt_status_t *to_append); #endif /* MONGOCRYPT_STATUS_PRIVATE_H */
Version data entries
3 entries across 3 versions & 1 rubygems