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.
39 lines
533 B
39 lines
533 B
#if TESTPROGRAM
|
|
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dummy.c - dummy global vars.
|
|
|
|
Abstract:
|
|
|
|
|
|
Revision History:
|
|
|
|
Who When What
|
|
-------- -------- ----------------------------------------------
|
|
josephj 03-30-98 Created
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
#if 0
|
|
#include "c.h"
|
|
|
|
void test_AllocateObject(void);
|
|
|
|
void init_dummy_vars(void)
|
|
{
|
|
test_AllocateObject();
|
|
}
|
|
|
|
void delete_dummy_vars(void)
|
|
{
|
|
test_AllocateObject();
|
|
}
|
|
|
|
#endif // 0
|
|
#endif // TESTPROGRAM
|