/////////////////////////////////////////////////////////////////////////////// // // (c) Digi International Inc. 2002. All Rights Reserved // // Digi provides this document "as is," without warranty of any kind, // either expressed or implied, including, but not limited to, the implied // warranties of fitness or merchantability for a particular purpose. Digi // may make improvements and/or changes in this document or in the product(s) // and/or the program(s) described in this document at any time. // // This document could include technical inaccuracies or typographical errors. // Changes are periodically made to the information herein; these changes may // be incorporated in new editions of the publication. // // Digi International Inc. // 11001 Bren Road East // Minnetonka, MN 55343, USA // Tel: +1 (952) 912-3444 // Fax: +1 (952) 912-4952 // http://www.digi.com/ // /////////////////////////////////////////////////////////////////////////////// // HexDumpData.h : // #if !defined(HEXDUMPDATA_H_INCLUDED) #define HEXDUMPDATA_H_INCLUDED #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // Utitily function for dumping data in a human readable hex format to stdout void HexDumpData(BYTE const * const Data, DWORD const Length); #endif // !defined(HEXDUMPDATA_H_INCLUDED)