объясните структуру TProcessEntry32
кто-нибудь может дать сылку или объяснить из чего состоит TProcessEntry32
Структура называется не TProcessEntry32, а PROCESSENTRY32.
Описана в хелпе(Win32 SDK) и МСДН. Используется при вызове Process32First, Process32Next и содержит параметры процесса - такие как идентификатор процесса, имя исполняемого модуля и т.д.
Описана в хелпе(Win32 SDK) и МСДН. Используется при вызове Process32First, Process32Next и содержит параметры процесса - такие как идентификатор процесса, имя исполняемого модуля и т.д.[/QUOTE]
у меня нету хелпа Win32SDK и МСДН. Вот я бы и хотел узнать имена параметров этой структуры. Скопируйте хоть из MSDN, пожалуйста
Интернета у тебя тоже нет? :) Или если я не упомянул гугль - тебе просто в западло им воспользоваться? :) Кроме того - кликнуть по меню хелп в билдере и просмотреть список разделов - разве тяжело?
Цитата:
typedef struct tagPROCESSENTRY32 {
DWORD dwSize;
DWORD cntUsage;
DWORD th32ProcessID;
DWORD th32DefaultHeapID;
DWORD th32ModuleID;
DWORD cntThreads;
DWORD th32ParentProcessID;
LONG pcPriClassBase;
DWORD dwFlags;
char szExeFile[MAX_PATH];
} PROCESSENTRY32;
typedef PROCESSENTRY32 * PPROCESSENTRY32;
typedef PROCESSENTRY32 * LPPROCESSENTRY32;
Members
dwSize
Specifies the length, in bytes, of the structure. Before calling the Process32First function, set this member to
sizeof(PROCESSENTRY32).
cntUsage
Number of references to the process. A process exists as long as its usage count is nonzero. As soon as its usage count becomes zero, a process terminates.
th32ProcessID
Identifier of the process. The contents of this member can be used by Win32 API elements.
th32DefaultHeapID
Identifier of the default heap for the process. The contents of this member has meaning only to the tool help functions. It is not a handle, nor is it usable by Win32 API elements.
th32ModuleID
Module identifier of the process. The contents of this member has meaning only to the tool help functions. It is not a handle, nor is it usable by Win32 API elements.
cntThreads
Number of execution threads started by the process.
th32ParentProcessID
Identifier of the process that created the process being examined. The contents of this member can be used by Win32 API elements.
pcPriClassBase
Base priority of any threads created by this process.
dwFlags
Reserved; do not use.
szExeFile
Path and filename of the executable file for the process.
взято и справки билдера.