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.
31 lines
622 B
31 lines
622 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// File: kphttp.h
|
|
//
|
|
// Contents: prototypes for routines to handle http communication
|
|
//
|
|
// History: 10-Jul-2001 t-ryanj Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
#include "kpcommon.h"
|
|
#include "kpcontext.h"
|
|
|
|
#ifndef __KPHTTP_H__
|
|
#define __KPHTTP_H__
|
|
|
|
VOID
|
|
KpHttpRead(
|
|
PKPCONTEXT pContext
|
|
);
|
|
|
|
VOID
|
|
KpHttpWrite(
|
|
PKPCONTEXT pContext
|
|
);
|
|
|
|
#endif // __KPHTTP_H__
|
|
|