Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Process/GetProcessID


Ignore:
Timestamp:
03/12/25 07:53:39 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Process/GetProcessID

    v4 v5  
    22Get the process ID of the specified name
    33
    4 {{{
     4{{{#!c++
    55int GetProcessID(const string& strName, pid_t exclude = 0);
    66
     
    2222== Examples ==
    2323
    24 {{{
     24{{{#!c++
    2525string strProc = "wtsvr";
    2626if(GetProcessID(strProc) == 0)
     
    3030}}}
    3131
    32 {{{
     32{{{#!c++
    3333if(GetProcessID("wtsvr") == 0)
    3434{
     
    3737}}}
    3838
    39 {{{
     39{{{#!c++
    4040if(GetProcessID("myapp", getpid()) == 0)
    4141{