Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Set a flag to disallow DLL binding.
Syntax
/ALLOWBIND[:NO]
Remarks
The /ALLOWBIND:NO linker option sets a bit in a DLL's header that indicates to Bind.exe that the image can't be bound. You may not want a DLL to be bound if it's been digitally signed (binding invalidates the signature).
You can edit an existing DLL for /ALLOWBIND functionality with the /ALLOWBIND option of the EDITBIN utility.
To set this linker option in the Visual Studio development environment
Open the project's Property Pages dialog box. For details, see Set C++ compiler and build properties in Visual Studio.
Select the Configuration Properties > Linker > Command Line property page.
Enter
/ALLOWBIND:NOinto Additional Options. Choose OK or Apply to apply the change.
To set this linker option programmatically
- See AdditionalOptions.
See also
MSVC linker reference
MSVC linker options
BindImage function
BindImageEx function