32 lines
663 B
C++
32 lines
663 B
C++
|
//+--------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1992.
|
||
|
//
|
||
|
// File: tests.hxx
|
||
|
//
|
||
|
// Contents: DRT tests header
|
||
|
//
|
||
|
// History: 23-Sep-92 DrewB Created
|
||
|
//
|
||
|
//---------------------------------------------------------------
|
||
|
|
||
|
#ifndef __TESTS_HXX__
|
||
|
#define __TESTS_HXX__
|
||
|
|
||
|
void t_create(void);
|
||
|
void t_open(void);
|
||
|
void t_addref(void);
|
||
|
void t_tmodify(void);
|
||
|
void t_dmodify(void);
|
||
|
void t_stat(void);
|
||
|
void t_stream(void);
|
||
|
void t_enum(void);
|
||
|
void t_stgcopyto(void);
|
||
|
void t_marshal(void);
|
||
|
void t_stgmisc(void);
|
||
|
void t_ilb(void);
|
||
|
void t_movecopy(void);
|
||
|
|
||
|
#endif // #ifndef __TESTS_HXX__
|