/*---------------------------------------------------------------------------* Project: Horizon File: ssl_Types.h Copyright (C)2009 Nintendo Co., Ltd. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Rev: 18106 $ *---------------------------------------------------------------------------*/ #ifndef NN_SSL_SSL_TYPES_H_ #define NN_SSL_SSL_TYPES_H_ #include /*! @addtogroup nn_ssl ssl @{ */ /** @brief 証明書ID。 */ typedef NSSLCertId NnSslCertId; /** @brief CRL ID。 */ typedef NSSLCRLId NnSslCrlId; /*! @} */ #ifdef __cplusplus namespace nn { namespace ssl { /** @brief 証明書ID。 */ typedef NnSslCertId CertId; /** @brief CRL ID。 */ typedef NnSslCrlId CrlId; /** @brief SSLコネクションID。 */ typedef NSSLId ConnectionHandle; /** @brief 証明書ストアID。 */ typedef NSSLCertStoreId CertStoreId; /** @brief CRL ストア ID。 */ typedef NSSLCRLStoreId CrlStoreId; } // end of namespace ssl } // end of namespace nn #endif /*__cplusplus*/ #endif /* NN_NHTTP_NHTTP_TYPES_H_ */