mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:15:58 +00:00
[MSIEXEC]
* Create a main header and move some inclusions to it. CORE-7716 svn path=/trunk/; revision=61613
This commit is contained in:
parent
c048eac06a
commit
849d08480d
3 changed files with 20 additions and 20 deletions
|
@ -19,24 +19,15 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include "precomp.h"
|
||||
|
||||
#include <winreg.h>
|
||||
#include <winsvc.h>
|
||||
#include <winuser.h>
|
||||
#include <msi.h>
|
||||
#include <objbase.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
#include <wine/unicode.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(msiexec);
|
||||
|
||||
typedef HRESULT (WINAPI *DLLREGISTERSERVER)(void);
|
||||
typedef HRESULT (WINAPI *DLLUNREGISTERSERVER)(void);
|
||||
|
||||
|
|
17
reactos/base/system/msiexec/precomp.h
Normal file
17
reactos/base/system/msiexec/precomp.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef _MSIEXEC_PCH_
|
||||
#define _MSIEXEC_PCH_
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winsvc.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(msiexec);
|
||||
|
||||
#endif /* _MSIEXEC_PCH_ */
|
|
@ -18,15 +18,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winsvc.h>
|
||||
#include <stdio.h>
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(msiexec);
|
||||
#include "precomp.h"
|
||||
|
||||
static SERVICE_STATUS_HANDLE hstatus;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue