1# Copyright 2015 gRPC authors. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14# distutils: language=c++ 15 16cimport cpython 17 18include "_cygrpc/grpc.pxi" 19 20include "_cygrpc/arguments.pxd.pxi" 21include "_cygrpc/call.pxd.pxi" 22include "_cygrpc/channel.pxd.pxi" 23include "_cygrpc/credentials.pxd.pxi" 24include "_cygrpc/completion_queue.pxd.pxi" 25include "_cygrpc/event.pxd.pxi" 26include "_cygrpc/metadata.pxd.pxi" 27include "_cygrpc/operation.pxd.pxi" 28include "_cygrpc/propagation_bits.pxd.pxi" 29include "_cygrpc/records.pxd.pxi" 30include "_cygrpc/security.pxd.pxi" 31include "_cygrpc/server.pxd.pxi" 32include "_cygrpc/tag.pxd.pxi" 33include "_cygrpc/time.pxd.pxi" 34include "_cygrpc/vtable.pxd.pxi" 35include "_cygrpc/_hooks.pxd.pxi" 36 37 38include "_cygrpc/grpc_gevent.pxd.pxi" 39 40IF UNAME_SYSNAME != "Windows": 41 include "_cygrpc/fork_posix.pxd.pxi" 42 43# Following pxi files are part of the Aio module 44include "_cygrpc/aio/completion_queue.pxd.pxi" 45include "_cygrpc/aio/rpc_status.pxd.pxi" 46include "_cygrpc/aio/grpc_aio.pxd.pxi" 47include "_cygrpc/aio/callback_common.pxd.pxi" 48include "_cygrpc/aio/call.pxd.pxi" 49include "_cygrpc/aio/channel.pxd.pxi" 50include "_cygrpc/aio/server.pxd.pxi" 51