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.
39 lines
666 B
39 lines
666 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// File: kthttp.cxx
|
|
//
|
|
// Contents: Kerberos Tunneller, http communication prototypes
|
|
//
|
|
// History: 28-Jun-2001 t-ryanj Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
#ifndef __KTHTTP_H__
|
|
#define __KTHTTP_H__
|
|
|
|
#include "ktcontext.h"
|
|
|
|
BOOL
|
|
KtInitHttp(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
KtCleanupHttp(
|
|
VOID
|
|
);
|
|
|
|
BOOL
|
|
KtHttpWrite(
|
|
PKTCONTEXT pContext
|
|
);
|
|
|
|
BOOL
|
|
KtHttpRead(
|
|
PKTCONTEXT pContext
|
|
);
|
|
|
|
#endif // __KTHTTP_H__
|