blob: 539cdc43647670431d32fc3128c1d0dc0f7f80a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//+------------------------------------------------------------------
//
// File: main.cxx
//
// Contents: common entry point for test drivers.
//
//--------------------------------------------------------------------
#include <tstmain.hxx>
#include <tmarshal.h>
//+-------------------------------------------------------------------
//
// Function: main
//
// Synopsis: Entry point to EXE
//
// Returns: TRUE
//
// History: 21-Nov-92 Rickhi Created
//
// Just delegates to a <main> subroutine that is common for all test
// drivers.
//
//
//--------------------------------------------------------------------
int _cdecl main(int argc, char **argv)
{
return DriverMain(argc, argv, "InterfaceMarshal", &TestMarshal);
}
|