feat: add BeaconDownload builtin API symbol

New CS 4.12 release adds the `BeaconDownload` function to list of
Beacon API functions. This adds support for resolving that symbol when
using the builtin Beacon API symbols.
This commit is contained in:
Matt Ehrnschwender
2025-11-25 11:08:42 -05:00
parent faf2158eb5
commit ae03ef71e7
+2
View File
@@ -29,6 +29,7 @@ const BEACONAPI64_SYMBOLS: &[(&str, &str)] = &[
"__imp_BeaconDataStoreUnprotectItem",
),
("BeaconDisableBeaconGate", "__imp_BeaconDisableBeaconGate"),
("BeaconDownload", "__imp_BeaconDownload"),
("BeaconDuplicateHandle", "__imp_BeaconDuplicateHandle"),
("BeaconEnableBeaconGate:", "__imp_BeaconEnableBeaconGate:"),
("BeaconFormatAlloc", "__imp_BeaconFormatAlloc"),
@@ -102,6 +103,7 @@ const BEACONAPI32_SYMBOLS: &[(&str, &str)] = &[
"__imp__BeaconDataStoreUnprotectItem",
),
("_BeaconDisableBeaconGate", "__imp__BeaconDisableBeaconGate"),
("_BeaconDownload", "__imp__BeaconDownload"),
("_BeaconDuplicateHandle", "__imp__BeaconDuplicateHandle"),
("_BeaconEnableBeaconGate:", "__imp__BeaconEnableBeaconGate:"),
("_BeaconFormatAlloc", "__imp__BeaconFormatAlloc"),