Leaked source code of windows server 2003
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.
|
|
/****************************************************************************
* * $Archive: S:/STURGEON/SRC/Q931/VCS/utils.h_v $ * * INTEL Corporation Prorietary Information * * This listing is supplied under the terms of a license agreement * with INTEL Corporation and may not be copied nor disclosed except * in accordance with the terms of that agreement. * * Copyright (c) 1993-1996 Intel Corporation. * * $Revision: 1.16 $ * $Date: 21 Jan 1997 16:09:10 $ * $Author: MANDREWS $ * * Deliverable: * * Abstract: * * Call Setup Utilities * * Notes: * ***************************************************************************/
#ifndef UTILS_H
#define UTILS_H
#ifdef __cplusplus
extern "C" { #endif
void Q931MakePhysicalID(DWORD *);
#define UnicodeToAscii(src, dest, max) WideCharToMultiByte(CP_ACP, 0, src, -1, dest, max, NULL, NULL)
#define AsciiToUnicode(src, dest, max) MultiByteToWideChar(CP_ACP, 0, src, -1, dest, max)
WORD ADDRToInetPort(CC_ADDR *pAddr); DWORD ADDRToInetAddr(CC_ADDR *pAddr); void SetDefaultPort(CC_ADDR *pAddr); BOOL MakeBinaryADDR(CC_ADDR *pInAddr, CC_ADDR *pOutAddr); void GetDomainAddr(CC_ADDR *pAddr);
#ifdef __cplusplus
} #endif
#endif UTILS_H
|