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
560 B
29 lines
560 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// File: kppool.cxx
|
|
//
|
|
// Contents: Prototypes for thread pool management routines.
|
|
//
|
|
// History: 10-Jul-2001 t-ryanj Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
#ifndef __KPPOOL_H__
|
|
#define __KPPOOL_H__
|
|
|
|
#include "kpcommon.h"
|
|
|
|
BOOL
|
|
KpInitThreadPool(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
KpCleanupThreadPool(
|
|
VOID
|
|
);
|
|
|
|
#endif
|