mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-04 18:28:30 +00:00
Avoid linker conflicts on DescribeFoo symbols
These symbols belong to the user. It caused a confusing error for Blink.
This commit is contained in:
parent
38cc4b3c68
commit
bb06230f1e
120 changed files with 346 additions and 347 deletions
|
@ -57,11 +57,11 @@ TryAgain:
|
|||
opt_lpSecurity, dwCreationDisposition,
|
||||
dwFlagsAndAttributes, opt_hTemplateFile);
|
||||
NTTRACE("CreateFile(%#hs, %s, %s, %s, %s, %s, %ld) → {%ld, %d}", lpFileName,
|
||||
(DescribeNtFileAccessFlags)(buf_accessflags, dwDesiredAccess),
|
||||
(DescribeNtFileShareFlags)(buf_shareflags, dwShareMode),
|
||||
(DescribeNtSecurityAttributes)(buf_secattr, opt_lpSecurity),
|
||||
DescribeNtCreationDisposition(dwCreationDisposition),
|
||||
(DescribeNtFileFlagAttr)(buf_flagattr, dwFlagsAndAttributes),
|
||||
_DescribeNtFileAccessFlags(buf_accessflags, dwDesiredAccess),
|
||||
_DescribeNtFileShareFlags(buf_shareflags, dwShareMode),
|
||||
_DescribeNtSecurityAttributes(buf_secattr, opt_lpSecurity),
|
||||
_DescribeNtCreationDisposition(dwCreationDisposition),
|
||||
_DescribeNtFileFlagAttr(buf_flagattr, dwFlagsAndAttributes),
|
||||
opt_hTemplateFile, hHandle, __imp_GetLastError());
|
||||
if (hHandle == -1) {
|
||||
switch (__imp_GetLastError()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue