Leaked source code of windows server 2003
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.
|
|
//+-----------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) Microsoft Corporation
//
// File: kpcore.h
//
// Contents: core routine for worker threads prototype
//
// History: 10-Jul-2001 t-ryanj Created
//
//------------------------------------------------------------------------
#include "kpcommon.h"
#ifndef __KPCORE_H__
#define __KPCORE_H__
DWORD WINAPI KpThreadCore( LPVOID ignore );
VOID CALLBACK KpIoCompletionRoutine( DWORD dwErrorCode, DWORD dwBytes, LPOVERLAPPED lpOverlapped );
#endif // __KPCORE_H__
|