📄 ft.h
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
////////////////////////////////////////////////////////////////////////////////
//
// TUXTEST TUX DLL
//
// Module: ft.h
// Declares the TUX function table and test function prototypes EXCEPT
// when included by globals.cpp, in which case it DEFINES the function
// table.
//
// Revision History:
//
////////////////////////////////////////////////////////////////////////////////
#if (!defined(__FT_H__) || defined(__GLOBALS_CPP__))
#ifndef __FT_H__
#define __FT_H__
#endif
////////////////////////////////////////////////////////////////////////////////
// Local macros
#ifdef __DEFINE_FTE__
#undef BEGIN_FTE
#undef FTE
#undef FTH
#undef END_FTE
#define BEGIN_FTE FUNCTION_TABLE_ENTRY g_lpFTE[] = {
#define FTH(a, b) { TEXT(b), a, 0, 0, NULL },
#define FTE(a, b, c, d, e) { TEXT(b), a, d, c, e },
#define END_FTE { NULL, 0, 0, 0, NULL } };
#else // __DEFINE_FTE__
#ifdef __GLOBALS_CPP__
#define BEGIN_FTE
#else // __GLOBALS_CPP__
#define BEGIN_FTE extern FUNCTION_TABLE_ENTRY g_lpFTE[];
#endif // __GLOBALS_CPP__
#define FTH(a, b)
#define FTE(a, b, c, d, e) TESTPROCAPI e(UINT, TPPARAM, LPFUNCTION_TABLE_ENTRY);
#define END_FTE
#endif // __DEFINE_FTE__
////////////////////////////////////////////////////////////////////////////////
// TUX Function table
// To create the function table and function prototypes, two macros are
// available:
//
// FTH(level, description)
// (Function Table Header) Used for entries that don't have functions,
// entered only as headers (or comments) into the function table.
//
// FTE(level, description, code, param, function)
// (Function Table Entry) Used for all functions. DON'T use this macro
// if the "function" field is NULL. In that case, use the FTH macro.
//
// You must not use the TEXT or _T macros here. This is done by the FTH and FTE
// macros.
//
// In addition, the table must be enclosed by the BEGIN_FTE and END_FTE macros.
BEGIN_FTE
FTH(0, "Sample test cases")
FTE(1, "Sample test", 1, 0, TestProc)
END_FTE
////////////////////////////////////////////////////////////////////////////////
#endif // !__FT_H__ || __GLOBALS_CPP__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -