port.h
上传用户:kongshuqi
上传日期:2013-10-09
资源大小:59k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * FreeModbus Libary: BSD Socket Library Port
  3.  * Copyright (C) 2006 Christian Walter <wolti@sil.at>
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  *
  19.  * File: $Id: port.h,v 1.2 2006/06/26 19:24:07 wolti Exp $
  20.  */
  21. #ifndef _PORT_H
  22. #define _PORT_H
  23. #include <windows.h>
  24. #include <tchar.h>
  25. #include <assert.h>
  26. #define INLINE
  27. #define PR_BEGIN_EXTERN_C extern "C" {
  28. #define PR_END_EXTERN_C }
  29. #ifdef __cplusplus
  30. PR_BEGIN_EXTERN_C
  31. #endif
  32. /* ----------------------- Defines ------------------------------------------*/
  33. #define ENTER_CRITICAL_SECTION( )
  34. #define EXIT_CRITICAL_SECTION( )
  35. #define MB_PORT_HAS_CLOSE 1
  36. #ifndef TRUE
  37. #define TRUE            1
  38. #endif
  39. #ifndef FALSE
  40. #define FALSE           0
  41. #endif
  42. /* ----------------------- Type definitions ---------------------------------*/
  43. typedef enum
  44. {
  45.     MB_LOG_DEBUG,
  46.     MB_LOG_INFO,
  47.     MB_LOG_WARN,
  48.     MB_LOG_ERROR
  49. } eMBPortLogLevel;
  50. /* ----------------------- Function prototypes ------------------------------*/
  51. void            vMBPortLog( eMBPortLogLevel eLevel, const TCHAR * szModule, 
  52.                             const TCHAR * szFmt, ... );
  53. #ifdef __cplusplus
  54. PR_END_EXTERN_C
  55. #endif
  56. #endif