Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

36 lines
894 B

//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1999.
//
// File: shelldrt.h - Type and structure defs for shell drts
//
//--------------------------------------------------------------------------
#pragma once
// SHTESTPROC
//
// Function type of a shell drt
typedef BOOL (CALLBACK * SHTESTPROC)();
// SHTESTDESCRIPTOR
//
// Description, entry point, and option attributes for a shell drt
typedef struct
{
DWORD _cbSize;
LPCTSTR _pszTestName;
SHTESTPROC _pfnTestProc;
DWORD _dwAttribs;
} SHTESTDESCRIPTOR, * LPSHTESTDESCRIPTOR;
// SHTESTLISTPROC
//
// Each test dll exports this function, which describes the tests
// it contains (or returns just a count if the arg passed to is is null
typedef DWORD (CALLBACK * SHTESTLISTPROC)(LPSHTESTDESCRIPTOR);