<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic DisableProcessWindowsGhosting function in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068381#M118940</link>
    <description>&lt;P&gt;Is there a problem with this prototype in user32.f90?&amp;nbsp; The MS documentation indicate that the function name includes an s after the word part "window", but this prototype does not.&amp;nbsp; I'm getting a link error.&lt;/P&gt;

&lt;P&gt;subroutine DisableProcessWindowGhosting () bind(C,name="DisableProcessWindowGhosting")&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; !DEC$ ATTRIBUTES STDCALL :: DisableProcessWindowGhosting&lt;BR /&gt;
	end subroutine DisableProcessWindowGhosting&lt;/P&gt;

&lt;P&gt;&lt;A href="https://msdn.microsoft.com/en-us/library/ms648415(v=vs.85).aspx"&gt;https://msdn.microsoft.com/en-us/library/ms648415(v=vs.85).aspx&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2017 12:58:53 GMT</pubDate>
    <dc:creator>garylscott1</dc:creator>
    <dc:date>2017-03-28T12:58:53Z</dc:date>
    <item>
      <title>DisableProcessWindowsGhosting function</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068381#M118940</link>
      <description>&lt;P&gt;Is there a problem with this prototype in user32.f90?&amp;nbsp; The MS documentation indicate that the function name includes an s after the word part "window", but this prototype does not.&amp;nbsp; I'm getting a link error.&lt;/P&gt;

&lt;P&gt;subroutine DisableProcessWindowGhosting () bind(C,name="DisableProcessWindowGhosting")&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; !DEC$ ATTRIBUTES STDCALL :: DisableProcessWindowGhosting&lt;BR /&gt;
	end subroutine DisableProcessWindowGhosting&lt;/P&gt;

&lt;P&gt;&lt;A href="https://msdn.microsoft.com/en-us/library/ms648415(v=vs.85).aspx"&gt;https://msdn.microsoft.com/en-us/library/ms648415(v=vs.85).aspx&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 12:58:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068381#M118940</guid>
      <dc:creator>garylscott1</dc:creator>
      <dc:date>2017-03-28T12:58:53Z</dc:date>
    </item>
    <item>
      <title>Try:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068382#M118941</link>
      <description>&lt;P&gt;Try:&lt;/P&gt;

&lt;P&gt;Copy the interface from user32, paste into your PROGRAM/SUBROUTINE that calls it, add the 's', see if it&amp;nbsp;compiles and&amp;nbsp;links (then test to see if it runs as expected). I'd suggest not editing the user32 copy at this time. Rather create a module to contain the fixes. Example:&amp;nbsp;user32_fixes.f90 this way the changes are documented and when installing updates, you can verify if fix made it into the distribution.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 13:17:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068382#M118941</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-03-28T13:17:14Z</dc:date>
    </item>
    <item>
      <title>Yes thanks. I had already</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068383#M118942</link>
      <description>&lt;P&gt;Yes thanks. I had already done that.&amp;nbsp; It works fine with the modification.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;jimdempseyatthecove wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Try:&lt;/P&gt;

&lt;P&gt;Copy the interface from user32, paste into your PROGRAM/SUBROUTINE that calls it, add the 's', see if it&amp;nbsp;compiles and&amp;nbsp;links (then test to see if it runs as expected). I'd suggest not editing the user32 copy at this time. Rather create a module to contain the fixes. Example:&amp;nbsp;user32_fixes.f90 this way the changes are documented and when installing updates, you can verify if fix made it into the distribution.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 13:27:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068383#M118942</guid>
      <dc:creator>garylscott1</dc:creator>
      <dc:date>2017-03-28T13:27:55Z</dc:date>
    </item>
    <item>
      <title>Given that it is a bind(c)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068384#M118943</link>
      <description>&lt;P&gt;Given that it is a bind(c) interface it will be a new one added in &amp;nbsp;PSXE 17.0 so it is more likely to have a problem than one that has been there years and picked over by lots of people. Some of these interfaces probably hardly ever get used IMO.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 14:37:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068384#M118943</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2017-03-28T14:37:19Z</dc:date>
    </item>
    <item>
      <title>Sorry about that. Kevin,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068385#M118944</link>
      <description>&lt;P&gt;Sorry about that. Kevin, please escalate this to the RTL folks.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 15:20:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068385#M118944</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-03-28T15:20:21Z</dc:date>
    </item>
    <item>
      <title>Thank you for reporting this.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068386#M118945</link>
      <description>&lt;P&gt;Thank you for reporting this. I notified Development to have this corrected&amp;nbsp;in a future update/release.&lt;/P&gt;

&lt;P&gt;(Internal tracking id: DPD200419409)&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 15:30:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DisableProcessWindowsGhosting-function/m-p/1068386#M118945</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2017-03-28T15:30:21Z</dc:date>
    </item>
  </channel>
</rss>

