mirror of https://github.com/tongzx/nt5src
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.
60 lines
1.5 KiB
60 lines
1.5 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// File: cmuufns.h
|
|
//
|
|
// Module: CMSECURE.LIB
|
|
//
|
|
// Synopsis: Definitions for CM's UUEncode and UUDecode functions
|
|
//
|
|
// Copyright (c) 1996-1998 Microsoft Corporation
|
|
//
|
|
// Author: quintinb Created Header 08/18/99
|
|
//
|
|
//+----------------------------------------------------------------------------
|
|
|
|
|
|
#ifndef _CMUUFNS_INC_
|
|
#define _CMUUFNS_INC_
|
|
|
|
//************************************************************************
|
|
// define's
|
|
//************************************************************************
|
|
|
|
|
|
//************************************************************************
|
|
// structures, typdef's
|
|
//************************************************************************
|
|
|
|
|
|
|
|
//************************************************************************
|
|
// externs
|
|
//************************************************************************
|
|
|
|
|
|
//************************************************************************
|
|
// function prototypes
|
|
//************************************************************************
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
BOOL uudecode(
|
|
const char * bufcoded,
|
|
CHAR * pbuffdecoded,
|
|
LPDWORD pcbDecoded );
|
|
|
|
|
|
BOOL uuencode( const BYTE* bufin,
|
|
DWORD nbytes,
|
|
CHAR * pbuffEncoded,
|
|
DWORD outbufmax);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // _CMUUFNS_INC_
|
|
|