Skip to content

Commit

Permalink
Fix argument direction in windows.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Aug 8, 2023
1 parent 8f88528 commit 4d7473b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cfg/windows.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2960,7 +2960,7 @@ HFONT CreateFont(
<arg nr="1" direction="out">
<not-null/>
</arg>
<arg nr="2" direction="in">
<arg nr="2">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
Expand All @@ -2985,7 +2985,7 @@ HFONT CreateFont(
<arg nr="1" direction="out">
<not-null/>
</arg>
<arg nr="2" direction="in">
<arg nr="2">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
Expand Down Expand Up @@ -3023,7 +3023,7 @@ HFONT CreateFont(
_In_ LPARAM lParam); -->
<function name="SendMessage,SendMessageA,SendMessageW">
<noreturn>false</noreturn>
<arg nr="1" direction="in">
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
Expand All @@ -3044,7 +3044,7 @@ HFONT CreateFont(
_In_ LPARAM lParam); -->
<function name="PostMessage,PostMessageA,PostMessageW">
<noreturn>false</noreturn>
<arg nr="1" direction="in">
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
Expand Down Expand Up @@ -3306,7 +3306,7 @@ HFONT CreateFont(
<noreturn>false</noreturn>
<returnValue type="LPVOID"/>
<leak-ignore/>
<arg nr="1" direction="in">
<arg nr="1">
<not-null/>
</arg>
</function>
Expand All @@ -3315,10 +3315,10 @@ HFONT CreateFont(
<noreturn>false</noreturn>
<returnValue type="HGLOBAL"/>
<leak-ignore/>
<arg nr="1" direction="in">
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<arg nr="2">
<not-uninit/>
</arg>
</function>
Expand All @@ -3327,7 +3327,7 @@ HFONT CreateFont(
<noreturn>false</noreturn>
<returnValue type="BOOL"/>
<leak-ignore/>
<arg nr="1" direction="in">
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
Expand All @@ -3339,7 +3339,7 @@ HFONT CreateFont(
<noreturn>false</noreturn>
<returnValue type="BOOL"/>
<leak-ignore/>
<arg nr="1" direction="in">
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
Expand Down

0 comments on commit 4d7473b

Please sign in to comment.