WindowsXP-SP1/inetsrv/iis/inc/iisadmin.hxx
2020-09-30 16:53:49 +02:00

51 lines
818 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
metadata.h
Abstract:
IISADMIN include file.
Author:
Michael W. Thomas 20-Sept-96
Revision History:
--*/
#ifndef _iisadmin_h_
#define _iisadmin_h_
#define IISADMIN_NAME "IISADMIN"
#define IISADMIN_EXEENTRY_STRING "ExeEntry"
#define IISADMIN_EXEEXIT_STRING "ExeExit"
typedef
BOOL
(*PIISADMIN_SERVICE_DLL_EXEENTRY) (
BOOL fAsExe,
BOOL fIgnoreWinstaError,
BOOL fInitWam
);
typedef
VOID
(*PIISADMIN_SERVICE_DLL_EXEEXIT) (
);
typedef
VOID
(*PIISADMIN_SERVICE_SERVICEENTRY) (
DWORD cArgs,
LPWSTR pArgs[],
PTCPSVCS_GLOBAL_DATA pGlobalData // unused
);
#endif