mirror of https://github.com/lianthony/NT4.0
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.
23 lines
778 B
23 lines
778 B
/**************************** MODULE HEADER **********************************
|
|
* rasconv.h
|
|
* Function prototypes for functions to convert binary to ASCII and
|
|
* return. Needed to overcome registry limitations.
|
|
*
|
|
* Copyright (C) 1992 Microsoft Corporation.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
|
|
/*
|
|
* Functions to convert binary data to ASCII and back again. These are
|
|
* used to transform data before sending/after receiving from the
|
|
* registry, which appears to accept ASCII data only, despite what
|
|
* the documentation states.
|
|
*/
|
|
|
|
|
|
/* Binary -> ascii: going to the registry */
|
|
void bin2asc( BYTE *, BYTE *, int );
|
|
|
|
/* ASCII-> binary: coming from the registry */
|
|
void asc2bin( BYTE *, BYTE *, int );
|