28 lines
541 B
C
28 lines
541 B
C
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
||
|
//
|
||
|
// File: tests.h
|
||
|
//
|
||
|
// Contents: Declarations for the unit test functions
|
||
|
//
|
||
|
// Classes:
|
||
|
//
|
||
|
// Functions:
|
||
|
//
|
||
|
// History: dd-mmm-yy Author Comment
|
||
|
// 07-Feb-94 alexgo author
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __TESTS_H
|
||
|
#define __TESTS_H
|
||
|
|
||
|
void StartTest1(CSimpleApp *);
|
||
|
void StartTest2(CSimpleApp *);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|