mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-23 00:18:02 +02:00
fc358d6f18
This also cleans up header includes throughout the project. The order follows: libbson, libmongoc, libmongocrypt, PHP, contrib (e.g. PHP array API), internal modules (e.g. php_phongo.h, phongo_bson.h), and class headers. Quoted strings are used for all but PHP includes, which are always sourced from system directories. php_phongo.h is now responsible for including config.h and assigning the default logging domain.
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/*
|
|
* Copyright 2022-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 PHONGO_WRITECONCERN_H
|
|
#define PHONGO_WRITECONCERN_H
|
|
|
|
#include "mongoc/mongoc.h"
|
|
|
|
#include <php.h>
|
|
|
|
#define PHONGO_WRITE_CONCERN_W_MAJORITY "majority"
|
|
|
|
void phongo_writeconcern_init(zval* return_value, const mongoc_write_concern_t* write_concern);
|
|
|
|
const mongoc_write_concern_t* phongo_write_concern_from_zval(zval* zwrite_concern);
|
|
|
|
void php_phongo_write_concern_to_zval(zval* retval, const mongoc_write_concern_t* write_concern);
|
|
|
|
#endif /* PHONGO_WRITECONCERN_H */
|