You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
356 B
25 lines
356 B
// Copyright (c) 2000 Microsoft Corporation
|
|
//
|
|
// utility grab bag
|
|
//
|
|
// 28 Mar 2000 sburns
|
|
|
|
|
|
|
|
#ifndef UTIL_HPP_INCLUDED
|
|
#define UTIL_HPP_INCLUDED
|
|
|
|
|
|
|
|
HRESULT
|
|
CreateAndWaitForProcess(const String& commandLine, DWORD& exitCode);
|
|
|
|
|
|
|
|
DWORD
|
|
MyWaitForSendMessageThread(HANDLE hThread, DWORD dwTimeout);
|
|
|
|
|
|
|
|
#endif // UTIL_HPP_INCLUDED
|
|
|