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.
50 lines
904 B
50 lines
904 B
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1998 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// uuencode.h
|
|
//
|
|
// Abstract:
|
|
// Declarations.
|
|
//
|
|
// Implementation File:
|
|
// uuencode.cpp
|
|
//
|
|
// Author:
|
|
//
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __uuencode_h
|
|
#define __uuencode_h
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
typedef struct _BUFFER {
|
|
PBYTE pBuf;
|
|
DWORD cLen;
|
|
} BUFFER ;
|
|
|
|
|
|
BOOL
|
|
uuencode(
|
|
BYTE * bufin,
|
|
DWORD nbytes,
|
|
BUFFER * pbuffEncoded );
|
|
|
|
|
|
BOOL
|
|
uudecode(
|
|
char * bufcoded,
|
|
BUFFER * pbuffdecoded,
|
|
DWORD * pcbDecoded );
|
|
|
|
PBYTE BufferQueryPtr( BUFFER * pB );
|
|
|
|
BOOL BufferResize( BUFFER *pB, DWORD cNewL );
|
|
|
|
#endif // __uuencode_h
|