tcpapp.h

来自「在ARM7和UC/OSII的平台上实现了GPS自动报站的功能,涉及GPS模块LE」· C头文件 代码 · 共 37 行

H
37
字号
/*
 * FILENAME: tcpapp.h
 *
 * Copyright 2001 By InterNiche Technologies Inc. All rights reserved
 *
 * Single include file for INterNicher TCP applications. This defines everything
 * the app needs to call sockets. Works for Full-Sized stack or mini stack.
 *
 * MODULE: TCP
 *
 * PORTABLE: yes
 */

/* Additional Copyrights: */
/* Portions Copyright 1996 by NetPort Software. All rights reserved. */


#ifndef _TCPAPP_H
#define  _TCPAPP_H  1

#include "ipport.h"

#include "q.h"
#include "netbuf.h"
#include "net.h"


#ifdef MINI_TCP
#include "msock.h"
#else /* not MINI_TCP */
#include "tcpport.h"   /* NetPort embedded system includes */
#endif   /* MINI_TCP */

#endif	/* _TCPAPP_H */


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?