⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drmcommon.h

📁 本程序为ST公司开发的源代码
💻 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 + -