/static/avatar.png

WizTree V4.08 Python KeyGen

此代码是根据网上的 keygen.exe 文件反编译转换而来的。因为原 exe 也仅有 3KB 大小,就尝试着拿来研究了一下,结果还是花了两三天才完成。 简要说明 WizTree 所有功能针对个人

DRIVE_LAYOUT_INFORMATION_EX 中的 PartitionCount 分区数量

微软文档中,结构体 DRIVE_LAYOUT_INFORMATION_EX 的定义如下 1 2 3 4 5 6 7 8 9 typedef struct _DRIVE_LAYOUT_INFORMATION_EX { DWORD PartitionStyle; DWORD PartitionCount; union { DRIVE_LAYOUT_INFORMATION_MBR Mbr; DRIVE_LAYOUT_INFORMATION_GPT Gpt; } DUMMYUNIONNAME; PARTITION_INFORMATION_EX PartitionEntry[1]; } DRIVE_LAYOUT_INFORMATION_EX, *PDRIVE_LAYOUT_INFORMATION_EX; 字段 PartitionCount 的描述为: The number of partitions on the drive. On hard disks with the MBR layout, this value will

First_post

使用主题:LoveIt 搭建参考:Theme Documentation - Basics 1 2 3 4 5 6 7 8 git clone https://github.com/xja/xja.github.io hugo new site xja.github.io --force cd xja.github.io git submodule add https://github.com/dillonzq/LoveIt.git themes/LoveIt hugo new posts/first_post.zh-cn.md git add . git commit -m "First post" git push