<feed xmlns='http://www.w3.org/2005/Atom'>
<title>windows-driver-samples.git/filesys/fastfat, branch develop</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/windows-driver-samples.git/atom/filesys/fastfat?h=develop</id>
<link rel='self' href='http://cgit.235523.xyz/windows-driver-samples.git/atom/filesys/fastfat?h=develop'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/'/>
<updated>2024-02-26T17:47:25Z</updated>
<entry>
<title>Remove x86 and ARM configurations for sample projects. (#1126)</title>
<updated>2024-02-26T17:47:25Z</updated>
<author>
<name>Adonais Romero González</name>
<email>adonais.neoadonis@gmail.com</email>
</author>
<published>2024-02-26T17:47:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=3fcc0f2bee2fbd40fe953ecbcb15b2bd8b0d3eb9'/>
<id>urn:sha1:3fcc0f2bee2fbd40fe953ecbcb15b2bd8b0d3eb9</id>
<content type='text'>
* Removed Win32 and Arm from the project configurations.
* Set default platform to x64.</content>
</entry>
<entry>
<title>Add ARM64 as target platform on multiple samples (#1104)</title>
<updated>2024-02-19T22:26:14Z</updated>
<author>
<name>Adonais Romero González</name>
<email>adonais.neoadonis@gmail.com</email>
</author>
<published>2024-02-19T22:26:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=cff1465ff184c6e89d43083f8430040e72d69283'/>
<id>urn:sha1:cff1465ff184c6e89d43083f8430040e72d69283</id>
<content type='text'>
* Add ARM64 as target platform on multiple samples

* Remove ARM64 from WFPSampler temporarily

---------

Co-authored-by: Jakob Lichtenberg (170957) &lt;jakobl@microsoft.com&gt;</content>
</entry>
<entry>
<title>Update some filesys projects' DriverTargetPlatform to be 'Windows Driver' (#962)</title>
<updated>2023-04-07T01:49:00Z</updated>
<author>
<name>Jason</name>
<email>jasonknichel@users.noreply.github.com</email>
</author>
<published>2023-04-07T01:49:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=03dbb616869946fd74cd73efb6ff684da9f60213'/>
<id>urn:sha1:03dbb616869946fd74cd73efb6ff684da9f60213</id>
<content type='text'>
Co-authored-by: Jason Knichel &lt;jknichel@ntdev.microsoft.com&gt;</content>
</entry>
<entry>
<title>Fix typo in comment (#557)</title>
<updated>2023-02-08T22:02:54Z</updated>
<author>
<name>Rod Widdowson</name>
<email>rdw@steadingsoftware.com</email>
</author>
<published>2023-02-08T22:02:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=c48bf7dd5c31141b4ea5a355801b9f5a5ee36113'/>
<id>urn:sha1:c48bf7dd5c31141b4ea5a355801b9f5a5ee36113</id>
<content type='text'>
The code grabs the FCB SHARED, not Ex</content>
</entry>
<entry>
<title>Replaced ExAllocatePoolWithTag to more secure ExAllocatePoolZero in samples of filesystems and filesystem filters; made necessary changes to make solutions buildable under recent Visual Studio (#725)</title>
<updated>2022-05-18T22:26:38Z</updated>
<author>
<name>olegkMS</name>
<email>86095074+olegkMS@users.noreply.github.com</email>
</author>
<published>2022-05-18T22:26:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=b8d3abcd822aafc27af851f7ec6b8938b21e57b5'/>
<id>urn:sha1:b8d3abcd822aafc27af851f7ec6b8938b21e57b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update hash algorithm to sha256</title>
<updated>2021-06-02T03:32:14Z</updated>
<author>
<name>darwin-msft</name>
<email>42794227+darwin-msft@users.noreply.github.com</email>
</author>
<published>2021-06-02T03:32:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=7f70194fa2b3bbeaee27b62bc9c3d2d5e3c34519'/>
<id>urn:sha1:7f70194fa2b3bbeaee27b62bc9c3d2d5e3c34519</id>
<content type='text'>
update hash algorithm to sha256
</content>
</entry>
<entry>
<title>Fix changing and reading FAT labels with leading 0xE5 byte in fastfat.sys (#303)</title>
<updated>2019-09-24T21:12:26Z</updated>
<author>
<name>pali</name>
<email>7141871+pali@users.noreply.github.com</email>
</author>
<published>2019-09-24T21:12:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=16022c593787aef040b8a37ef697316e07f1322e'/>
<id>urn:sha1:16022c593787aef040b8a37ef697316e07f1322e</id>
<content type='text'>
FAT Volume Label is stored in the root directory entry and therefore when
setting new Volume Label with leading 0xE5 byte it first needs to be
converted to 0x05 byte. This step is also required by Microsoft FAT
specification (fatgen103.doc) and also applied for all other files and
directories. But not for volume label yet. First byte 0xE5 in directory
entry means that entry is removed.

Similarly, when reading Volume Label from the root directory, leading byte
0x05 first needs to be converted to 0xE5 and then later processed. This is
reverse operation as described in previous paragraph.

FAT Volume Label is converted from Unicode to bytes according to OEM code
page. OEM code page is configured in Language for non-Unicode applications
settings in Country/Region settings.

When it is set to English (United Kingdom), then OEM code page is 850. And
in 850 is Unicode LATIN CAPITAL LETTER O WITH TILDE represented as 0xE5.

Therefore this pull request fixes setting FAT label "Õ" when regional
settings are set to English (United Kingdom).</content>
</entry>
<entry>
<title>Update README.md (#417)</title>
<updated>2019-09-16T21:04:28Z</updated>
<author>
<name>Barry Golden</name>
<email>bagold@microsoft.com</email>
</author>
<published>2019-09-16T21:04:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=f064dfb2d92ac3f1f4344d435e4690e4339b5025'/>
<id>urn:sha1:f064dfb2d92ac3f1f4344d435e4690e4339b5025</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update README.md (#404)</title>
<updated>2019-08-20T13:48:59Z</updated>
<author>
<name>Barry Golden</name>
<email>bagold@microsoft.com</email>
</author>
<published>2019-08-20T13:48:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=00c331aa9912fcbbe650d42fa794130643579e46'/>
<id>urn:sha1:00c331aa9912fcbbe650d42fa794130643579e46</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update README.md</title>
<updated>2019-08-17T23:50:38Z</updated>
<author>
<name>Barry Golden</name>
<email>bagold@microsoft.com</email>
</author>
<published>2019-08-17T23:50:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/windows-driver-samples.git/commit/?id=3156a4118e1f2d51c7df451525e514e1504c7d81'/>
<id>urn:sha1:3156a4118e1f2d51c7df451525e514e1504c7d81</id>
<content type='text'>
</content>
</entry>
</feed>
