25 lines
531 B
C
25 lines
531 B
C
|
//+-------------------------------------------------------------------------
|
|||
|
//
|
|||
|
// Microsoft Windows
|
|||
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|||
|
//
|
|||
|
// File: utils.h
|
|||
|
//
|
|||
|
// Contents: declarations for utility functions
|
|||
|
//
|
|||
|
// Classes:
|
|||
|
//
|
|||
|
// Functions: DumpFormatetc
|
|||
|
//
|
|||
|
// History: dd-mmm-yy Author Comment
|
|||
|
// 11-Aug-94 alexgo author
|
|||
|
//
|
|||
|
//--------------------------------------------------------------------------
|
|||
|
|
|||
|
#ifndef _UTILS_H
|
|||
|
|
|||
|
void DumpFormatetc(FORMATETC *pformatetc, FILE *fp);
|
|||
|
|
|||
|
#endif // _UTILS_H
|
|||
|
|
|||
|
|