/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ /* * (C) 2001 by Argonne National Laboratory. * See COPYRIGHT in top-level directory. */ #ifndef MPIDU_SOCKI_H #define MPIDU_SOCKI_H #include #include #include /* ws2tcpip.h is a C++ header file. This header file, mpidu_socki.h, if included within a extern "C" {} block would give an error if ws2tcpip is not included in a extern "C++" {} block. */ #ifdef __cplusplus extern "C++" { #endif #include #ifdef __cplusplus } #endif #define MPIDU_SOCK_INVALID_SOCK NULL #define MPIDU_SOCK_INVALID_SET NULL #define MPIDU_SOCK_INFINITE_TIME INFINITE #define inline __inline typedef HANDLE MPIDU_SOCK_NATIVE_FD; typedef HANDLE MPIDU_Sock_set_t; typedef struct sock_state_t * MPIDU_Sock_t; typedef DWORD MPIDU_Sock_size_t; #include "mpl.h" #include "mpi.h" #endif