Blame src/w32-sys-pth-impl.h

Packit 3c2767
## w32-sys-pth-impl.h - Include fragment to build assuan.h.
Packit 3c2767
## Copyright (C) 2009, 2010  Free Software Foundation, Inc.
Packit 3c2767
##
Packit 3c2767
## This file is part of Assuan.
Packit 3c2767
##
Packit 3c2767
## Assuan is free software; you can redistribute it and/or modify it
Packit 3c2767
## under the terms of the GNU Lesser General Public License as
Packit 3c2767
## published by the Free Software Foundation; either version 2.1 of
Packit 3c2767
## the License, or (at your option) any later version.
Packit 3c2767
##
Packit 3c2767
## Assuan is distributed in the hope that it will be useful, but
Packit 3c2767
## WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 3c2767
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 3c2767
## Lesser General Public License for more details.
Packit 3c2767
##
Packit 3c2767
## You should have received a copy of the GNU Lesser General Public
Packit 3c2767
## License along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 3c2767
## SPDX-License-Identifier: LGPL-2.1+
Packit 3c2767
##
Packit 3c2767
##
Packit 3c2767
## This file is included by the mkheader tool.  Lines starting with
Packit 3c2767
## a double hash mark are not copied to the destination file.
Packit 3c2767
##
Packit 3c2767
## Warning: This is a fragment of a macro - no empty lines please.
Packit 3c2767
  static int _assuan_pth_recvmsg (assuan_context_t ctx, assuan_fd_t fd, \
Packit 3c2767
				  assuan_msghdr_t msg, int flags)	\
Packit 3c2767
  {									\
Packit 3c2767
    (void) ctx;								\
Packit 3c2767
    gpg_err_set_errno (ENOSYS);                                         \
Packit 3c2767
    return -1;								\
Packit 3c2767
  }									\
Packit 3c2767
  static int _assuan_pth_sendmsg (assuan_context_t ctx, assuan_fd_t fd, \
Packit 3c2767
				  const assuan_msghdr_t msg, int flags) \
Packit 3c2767
  {									\
Packit 3c2767
    (void) ctx;								\
Packit 3c2767
    gpg_err_set_errno (ENOSYS);                                         \
Packit 3c2767
    return -1;								\
Packit 3c2767
  }                                                                     \
Packit 3c2767
##EOF## Force end-of file.
Packit 3c2767