Skip to content

Commit

Permalink
Cargo doc auto deployment 2024-08-01 13:32:54.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigocfd committed Aug 1, 2024
1 parent 72d699a commit f748487
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 39 deletions.
2 changes: 1 addition & 1 deletion search-index.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/winsafe/gui/privs_gui.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -516,16 +516,16 @@
<span class="comment">// Draw only the borders to avoid flickering.
</span>htheme.DrawThemeBackground(<span class="kw-2">&amp;</span>hdc,
co::VS::LISTVIEW_LISTGROUP, rc,
RECT { left: rc.left, top: rc.top, right: rc.left + <span class="number">2</span>, bottom: rc.bottom })<span class="question-mark">?</span>;
<span class="prelude-val">Some</span>(RECT { left: rc.left, top: rc.top, right: rc.left + <span class="number">2</span>, bottom: rc.bottom }))<span class="question-mark">?</span>;
htheme.DrawThemeBackground(<span class="kw-2">&amp;</span>hdc,
co::VS::LISTVIEW_LISTGROUP, rc,
RECT { left: rc.left, top: rc.top, right: rc.right, bottom: rc.top + <span class="number">2 </span>})<span class="question-mark">?</span>;
<span class="prelude-val">Some</span>(RECT { left: rc.left, top: rc.top, right: rc.right, bottom: rc.top + <span class="number">2 </span>}))<span class="question-mark">?</span>;
htheme.DrawThemeBackground(<span class="kw-2">&amp;</span>hdc,
co::VS::LISTVIEW_LISTGROUP, rc,
RECT { left: rc.right - <span class="number">2</span>, top: rc.top, right: rc.right, bottom: rc.bottom })<span class="question-mark">?</span>;
<span class="prelude-val">Some</span>(RECT { left: rc.right - <span class="number">2</span>, top: rc.top, right: rc.right, bottom: rc.bottom }))<span class="question-mark">?</span>;
htheme.DrawThemeBackground(<span class="kw-2">&amp;</span>hdc,
co::VS::LISTVIEW_LISTGROUP, rc,
RECT { left: rc.left, top: rc.bottom - <span class="number">2</span>, right: rc.right, bottom: rc.bottom })<span class="question-mark">?</span>;
<span class="prelude-val">Some</span>(RECT { left: rc.left, top: rc.bottom - <span class="number">2</span>, right: rc.right, bottom: rc.bottom }))<span class="question-mark">?</span>;
}

<span class="prelude-val">Ok</span>(())
Expand Down
10 changes: 8 additions & 2 deletions src/winsafe/uxtheme/handles/htheme.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,9 @@
<a href="#314" id="314">314</a>
<a href="#315" id="315">315</a>
<a href="#316" id="316">316</a>
<a href="#317" id="317">317</a>
<a href="#318" id="318">318</a>
<a href="#319" id="319">319</a>
</pre></div><pre class="rust"><code><span class="attr">#![allow(non_camel_case_types, non_snake_case)]

</span><span class="kw">use </span><span class="kw">crate</span>::co;
Expand Down Expand Up @@ -345,7 +348,7 @@
hdc: <span class="kw-2">&amp;</span>HDC,
part_state: co::VS,
rc: RECT,
rc_clip: RECT,
rc_clip: <span class="prelude-ty">Option</span>&lt;RECT&gt;,
) -&gt; HrResult&lt;()&gt;
{
ok_to_hrresult(
Expand All @@ -356,7 +359,10 @@
part_state.part,
part_state.state,
<span class="kw-2">&amp;</span>rc <span class="kw">as </span><span class="kw-2">*const </span><span class="kw">_ as _</span>,
<span class="kw-2">&amp;</span>rc_clip <span class="kw">as </span><span class="kw-2">*const </span><span class="kw">_ as _</span>,
<span class="kw">match </span>rc_clip {
<span class="prelude-val">Some</span>(rc_clip) =&gt; <span class="kw-2">&amp;</span>rc_clip <span class="kw">as </span><span class="kw-2">*const </span><span class="kw">_ as _</span>,
<span class="prelude-val">None </span>=&gt; std::ptr::null(),
},
)
},
)
Expand Down
Loading

0 comments on commit f748487

Please sign in to comment.