mirror of https://github.com/tongzx/nt5src
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.
45 lines
706 B
45 lines
706 B
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
svcpack.h
|
|
|
|
--*/
|
|
|
|
#include <windows.h>
|
|
#include <malloc.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wtypes.h>
|
|
#include <tchar.h>
|
|
#include <setupapi.h>
|
|
#include <spapip.h>
|
|
#include <cfgmgr32.h>
|
|
#include <regstr.h>
|
|
#include <winuser.h>
|
|
#include <commctrl.h>
|
|
#include <richedit.h>
|
|
#include <winsvc.h>
|
|
#include <prsht.h>
|
|
|
|
//
|
|
// Defining the EXPORT qualifier
|
|
//
|
|
|
|
BOOL
|
|
CALLBACK
|
|
SvcPackCallbackRoutine(
|
|
IN DWORD dwSetupInterval,
|
|
IN DWORD dwParam1,
|
|
IN DWORD dwParam2,
|
|
IN DWORD dwParam3
|
|
) ;
|
|
|
|
#define SVCPACK_PHASE_1 1
|
|
#define SVCPACK_PHASE_2 2
|
|
#define SVCPACK_PHASE_3 3
|
|
#define SVCPACK_PHASE_4 4
|
|
|