Merge pull request #92541 from patwork/fix-multichar-windows-utils
Fix multichar warning in `windows_utils.cpp`
This commit is contained in:
commit
e7dd6f11ed
|
@ -92,7 +92,7 @@ Error WindowsUtils::copy_and_rename_pdb(const String &p_dll_path) {
|
||||||
DWORD Offset;
|
DWORD Offset;
|
||||||
};
|
};
|
||||||
|
|
||||||
const DWORD nb10_magic = '01BN';
|
const DWORD nb10_magic = 0x3031424e; // "01BN" (little-endian)
|
||||||
struct CV_INFO_PDB20 {
|
struct CV_INFO_PDB20 {
|
||||||
CV_HEADER CvHeader; // CvHeader.Signature = "NB10"
|
CV_HEADER CvHeader; // CvHeader.Signature = "NB10"
|
||||||
DWORD Signature;
|
DWORD Signature;
|
||||||
|
@ -100,7 +100,7 @@ Error WindowsUtils::copy_and_rename_pdb(const String &p_dll_path) {
|
||||||
BYTE PdbFileName[1];
|
BYTE PdbFileName[1];
|
||||||
};
|
};
|
||||||
|
|
||||||
const DWORD rsds_magic = 'SDSR';
|
const DWORD rsds_magic = 0x53445352; // "SDSR" (little-endian)
|
||||||
struct CV_INFO_PDB70 {
|
struct CV_INFO_PDB70 {
|
||||||
DWORD Signature; // "RSDS"
|
DWORD Signature; // "RSDS"
|
||||||
BYTE Guid[16];
|
BYTE Guid[16];
|
||||||
|
|
Loading…
Reference in New Issue