作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 NetShareEnum function在 Windows API 中。它可以返回 SHARE_INFO_2 structure .该结构包含 shi2_type
成员,它被定义为“指定共享资源类型的标志位掩码”。位掩码的值在 LMSHare.h 中定义
#define STYPE_DISKTREE 0 // Disk drive.
#define STYPE_PRINTQ 1 // Print queue.
#define STYPE_DEVICE 2 // Communication device.
#define STYPE_IPC 3 // Interprocess communication (IPC).
STYPE_DISKTREE
.由于它是零位掩码,我不能在掩码上使用按位 AND 并将其与掩码进行比较以查看它是否已设置。那是,
(shi2_type & STYPE_DISKTREE) == STYPE_DISKTREE
shi2_type == STYPE_DISKTREE
最佳答案
来自 documentation :
A bitmask of flags that specify the type of the shared resource. Calls to the NetShareSetInfo function ignore this member.
One of the following flags may be specified.
STYPE_DISKTREE
STYPE_PRINTQ
STYPE_DEVICE
STYPE_IPC
In addition, one or both of the following flags may be specified.
STYPE_SPECIAL
STYPE_TEMPORARY
关于WinAPI - 如何解释位掩码 0 (LMShare.h/STYPE_DISKTREE)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8235095/
我是一名优秀的程序员,十分优秀!