Changeset 43
- Timestamp:
- Dec 19, 2005, 1:39:14 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel/qprocess.cpp
r42 r43 174 174 (like su and ssh). 175 175 176 \section1 Notes for Windows users177 178 Some Windows commands, for example, \c dir, are not provided by176 \section1 Notes for OS/2 and Windows users 177 178 Some OS/2 or Windows commands, for example, \c dir, are not provided by 179 179 separate applications, but by the command interpreter. 180 180 If you attempt to use QProcess to execute these commands directly 181 181 it won't work. One possible solution is to execute the command 182 interpreter itself (\c cmd.exe on some Windows systems), and ask182 interpreter itself (\c cmd.exe on OS/2 and on some Windows systems), and ask 183 183 the interpreter to execute the desired command. 184 184 … … 668 668 } 669 669 670 /*! 671 \fn QProcess::PID QProcess::processIdentifier() 672 673 Returns platform dependent information about the process. This can 674 be used together with platform specific system calls. 675 676 Under Unix the return value is the PID of the process, or -1 if no 677 process belongs to this object. 678 679 Under OS/2 the return value is the PID of the process, or (~1) if no 680 process belongs to this object. 681 682 Under Windows it is a pointer to the \c PROCESS_INFORMATION 683 struct, or 0 if no process is belongs to this object. 684 685 Use of this function's return value is likely to be non-portable. 686 */ 670 687 671 688 /*!
Note:
See TracChangeset
for help on using the changeset viewer.