osdep.h

来自「microwindows移植到S3C44B0的源码」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef	__OSDEP_H__#define __OSDEP_H__/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2, or (at * your option) any later version. */#if	defined(__linux__) || defined(__FreeBSD__) || defined (__MIPSEB__)#define	ETHERBOOT32#define ntohl(x) (x)#define htonl(x) (x)#define ntohs(x) (x)#define htons(x) (x)#endif/* ANSI prototyping macro */#ifdef	__STDC__#define	P(x)	x#else#define	P(x)	()#endif#endif/* * Local variables: *  c-basic-offset: 8 * End: */

⌨️ 快捷键说明

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