Skip to content

Commit

Permalink
Merge pull request rust-lang#16 from alexcrichton/subsystem
Browse files Browse the repository at this point in the history
Document the #![windows_subsystem] attribute
  • Loading branch information
steveklabnik authored Mar 23, 2017
2 parents 5165499 + 2f66039 commit 9e46a30
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ type int8_t = i8;
infinitely-recursive compile-time operations like
auto-dereference or macro expansion. The default is
`#![recursion_limit="64"]`.
- `windows_subsystem` - Indicates that when this crate is linked for a Windows
target it will configure the resulting binary's
[subsystem] via the linker. Valid values for this
attribute are `console` and `windows`, corresponding to
those two respective subsystems. More subsystems may be
allowed in the future, and this attribute is ignored on
non-Windows targets.

[subsystem]: https://msdn.microsoft.com/en-us/library/fcc1zstk.aspx

### Module-only attributes

Expand Down

0 comments on commit 9e46a30

Please sign in to comment.