CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 14 of 14
  1. #1
    Join Date
    Jan 2009
    Posts
    399

    Using PsSetCreateProcessNotifyRoutineEx

    I am trying to see when a new process is loaded into memory, and, for that I am intend to use PsSetCreateProcessNotifyRoutineEx method. In MSDN documentation say that this method has need
    Code:
    #include "Ntddk.h"
    Ok, for that, I have installed WinDDK in C:\WinDDK\7600.16385.1\, and I set additional include directory: C:\WinDDK\7600.16385.1\inc\ddk\
    but soon after I set this, I got the following errors:
    Code:
    1>Compiling...
    1>stdafx.cpp
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(60) : error C2065: '_In_opt_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(60) : error C2146: syntax error : missing ')' before identifier 'new_handler'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(60) : warning C4229: anachronism used : modifiers on data are ignored
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(60) : error C2491: 'std::set_new_handler' : definition of dllimport data not allowed
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(60) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(85) : error C2065: '_Size' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(85) : error C2448: '_Ret_opt_bytecap_' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(86) : error C2065: '_Size' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(86) : error C2448: '_Ret_opt_bytecap_' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(107) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(107) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(107) : error C2448: '_set_new_mode' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(107) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(118) : error C2143: syntax error : missing ';' before '__cdecl'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(119) : error C2143: syntax error : missing ';' before '__cdecl'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(119) : error C2065: '_In_opt_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(119) : error C2146: syntax error : missing ')' before identifier '_PNH'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(119) : warning C4229: anachronism used : modifiers on data are ignored
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(119) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\new.h(119) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(59) : error C2143: syntax error : missing ';' before '__cdecl'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(60) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(60) : error C2144: syntax error : '_EXCEPTION_RECORD' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(60) : error C2448: '_except_handler' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(61) : error C2144: syntax error : 'void' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(62) : error C2144: syntax error : '_CONTEXT' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(63) : error C2144: syntax error : 'void' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\excpt.h(64) : error C2059: syntax error : ')'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(49) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(51) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(53) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(157) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(158) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(159) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(160) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(161) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(164) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(165) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(167) : error C2143: syntax error : missing ';' before '*'
    1>c:\winddk\7600.16385.1\inc\api\windef.h(168) : error C2143: syntax error : missing ';' before '*'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(94) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(94) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(94) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(94) : error C2448: '_isctype' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(94) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(94) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2448: '_isctype_l' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2146: syntax error : missing ';' before identifier '_locale_t'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(95) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(96) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(96) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(96) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(96) : error C2448: 'isalpha' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(96) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(97) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(97) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(97) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(97) : error C2448: '_isalpha_l' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(97) : error C2146: syntax error : missing ';' before identifier '_locale_t'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(97) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(98) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(98) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(98) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(98) : error C2448: 'isupper' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(98) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(99) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(99) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(99) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(99) : error C2448: '_isupper_l' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(99) : error C2146: syntax error : missing ';' before identifier '_locale_t'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(99) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(100) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(100) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(100) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(100) : error C2448: 'islower' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(100) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(101) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(101) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(101) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(101) : error C2448: '_islower_l' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(101) : error C2146: syntax error : missing ';' before identifier '_locale_t'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(101) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(102) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(102) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(102) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(102) : error C2448: 'isdigit' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(102) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(103) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(103) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(103) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(103) : error C2448: '_isdigit_l' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(103) : error C2146: syntax error : missing ';' before identifier '_locale_t'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(103) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(104) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(104) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(104) : error C2144: syntax error : 'int' should be preceded by ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(104) : error C2448: 'isxdigit' : function-style initializer appears to be a function definition
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(104) : error C2059: syntax error : ')'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(105) : error C2144: syntax error : 'int' should be preceded by ';'
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(105) : error C2065: '_In_' : undeclared identifier
    1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\ctype.h(105) : fatal error C1003: error count exceeds 100; stopping compilation
    what could be the problem ? Could you help me ? Thank you.

  2. #2
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Using PsSetCreateProcessNotifyRoutineEx

    As far as I know, PsSetCreateProcessNotifyRoutineEx() is a kernel function to be called from a driver and not from a user process.
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  3. #3
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Using PsSetCreateProcessNotifyRoutineEx

    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  4. #4
    Join Date
    Jan 2009
    Posts
    399

    Re: Using PsSetCreateProcessNotifyRoutineEx

    Kindly thank you 2kaud, I will study every example.

  5. #5
    Join Date
    Jan 2009
    Posts
    399

    Re: Using PsSetCreateProcessNotifyRoutineEx

    From what I have read, if I would prevent the process creation, I should step down to the driver level ... so, I come back to the first post ...

  6. #6
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Using PsSetCreateProcessNotifyRoutineEx

    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  7. #7
    Join Date
    Jan 2009
    Posts
    399

    Re: Using PsSetCreateProcessNotifyRoutineEx

    "To get started, be sure you have Microsoft Visual Studio 2015 " it is mandatory ? I cannot create driver project in VS2008 ?

  8. #8
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Using PsSetCreateProcessNotifyRoutineEx

    Quote Originally Posted by mesajflaviu View Post
    "To get started, be sure you have Microsoft Visual Studio 2015 " it is mandatory ? I cannot create driver project in VS2008 ?
    Yes you probably can. The IDE menus, descriptions etc will likely be different though and the instructions may need to be modified to suite the older VS version. At some point Microsoft changed their underlying driver methodology - and I can't remember when. If it was after VS2008 then the instructions may not work and you'll need to search for how to do it with the older methodology.

    Why not take this opportunity to upgrade to VS2017. VS2008 is 10 years old and there have been massive changes to c++ since then.
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  9. #9
    Join Date
    Jan 2009
    Posts
    399

    Re: Using PsSetCreateProcessNotifyRoutineEx

    "Why not take this opportunity to upgrade to VS2017. VS2008 is 10 years old and there have been massive changes to c++ since then." I have an library inside my project that give error if is compiled with VS2017.

  10. #10
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: Using PsSetCreateProcessNotifyRoutineEx

    Quote Originally Posted by mesajflaviu View Post
    ... I have an library inside my project that give error if is compiled with VS2017.
    What error?
    ... or, perhaps, it is just a warning?
    Victor Nijegorodov

  11. #11
    Join Date
    Jan 2009
    Posts
    399

    Re: Using PsSetCreateProcessNotifyRoutineEx

    No no, it was errors ... I have tried formerly, but since I got errors, I give up to compile this project in VS2017 ... but I cannot tell you now what errors was.

  12. #12
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Using PsSetCreateProcessNotifyRoutineEx

    Quote Originally Posted by mesajflaviu View Post
    "Why not take this opportunity to upgrade to VS2017. VS2008 is 10 years old and there have been massive changes to c++ since then." I have an library inside my project that give error if is compiled with VS2017.
    That is possible - because of the many, many changes to the c++ language since c++98 (which VS2008 uses). Some accepted c++ syntax in VS2008 is no longer valid. When we moved to c++11 (VS2013 then VS2015) we had many issues with code that previously compiled OK that no longer compiled. We had to go through all the code and change it so that it compiled - which was quite time consuming but fairly painless as the problems were usually easily spotted.
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  13. #13
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: Using PsSetCreateProcessNotifyRoutineEx

    Quote Originally Posted by mesajflaviu View Post
    From what I have read, if I would prevent the process creation, I should step down to the driver level ... so, I come back to the first post ...
    No you don't. User space app has no control on foreign process creation. You get to kernel level to have one. This is what all anti-virus software does with no exception. This is a very basic Windows security concept, and you have no option to circumvent that.

    Quote Originally Posted by mesajflaviu View Post
    "To get started, be sure you have Microsoft Visual Studio 2015 " it is mandatory ? I cannot create driver project in VS2008 ?
    No, you can not. Historically, Visual Studio was intended to target user-space binary creation only, and kernel drivers belonged with DDK. DDK always was a development environment on its own, with a distinct development culture having nothing common with VS, hence the errors you've got. And it seems MS gave up a few years ago. Sissies...
    Last edited by Igor Vartanov; March 3rd, 2018 at 03:38 PM.
    Best regards,
    Igor

  14. #14
    Join Date
    Jan 2009
    Posts
    399

    Re: Using PsSetCreateProcessNotifyRoutineEx

    Kindly thank you Igor, now it is clear to me what I have to do.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured