drmcommon.h
来自「本程序为ST公司开发的源代码」· C头文件 代码 · 共 45 行
H
45 行
/**@@@+++@@@@********************************************************************** Microsoft Windows Media** Copyright (C) Microsoft Corporation. All rights reserved.*****@@@---@@@@*******************************************************************/#ifndef __DRMCOMMON_H__#define __DRMCOMMON_H__/*Temporary holding place for these constants */#ifndef TRUE #define TRUE 1#endif#ifndef FALSE #define FALSE 0#endif#ifndef NULL #define NULL 0#endif#ifndef NO_OF #define NO_OF( x ) ( SIZEOF( (x) ) / SIZEOF( (x)[0] ) )#endif#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))#define ROTATE_RIGHT(x, n) (((x) >> (n)) | ((x) << (32-(n))))#define WORDSWAP(d) ( ( (d) >> 16 ) + ( (d) << 16 ) )/* for good parameter documentation */#define IN#define OUT#include "drmtypes.h" /* core DRM types */#include "drmresults.h" /* return codes that DRM APIs can return */#include "drmerr.h"#define TRACE(x) #endif /* __DRMCOMMON_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?