📄 drmcommon.h
字号:
/**@@@+++@@@@********************************************************************** 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -