Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Process/GetProcessID
- Timestamp:
- 03/12/25 07:53:39 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Process/GetProcessID
v4 v5 2 2 Get the process ID of the specified name 3 3 4 {{{ 4 {{{#!c++ 5 5 int GetProcessID(const string& strName, pid_t exclude = 0); 6 6 … … 22 22 == Examples == 23 23 24 {{{ 24 {{{#!c++ 25 25 string strProc = "wtsvr"; 26 26 if(GetProcessID(strProc) == 0) … … 30 30 }}} 31 31 32 {{{ 32 {{{#!c++ 33 33 if(GetProcessID("wtsvr") == 0) 34 34 { … … 37 37 }}} 38 38 39 {{{ 39 {{{#!c++ 40 40 if(GetProcessID("myapp", getpid()) == 0) 41 41 {