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.
29 lines
567 B
29 lines
567 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// File: kpinit.h
|
|
//
|
|
// Contents: Prototypes relevent to starting/stopping the extension.
|
|
//
|
|
// History: 10-Jul-2001 t-ryanj Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
#include "kpcommon.h"
|
|
|
|
#ifndef __KPINIT_H__
|
|
#define __KPINIT_H__
|
|
|
|
BOOL
|
|
KpStartup(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
KpShutdown(
|
|
VOID
|
|
);
|
|
|
|
#endif // __KPINIT_H__
|