mirror of https://github.com/tongzx/nt5src
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.
49 lines
1.1 KiB
49 lines
1.1 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1991 - 1999
|
|
//
|
|
// File: testhlp.hxx
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
/* --------------------------------------------------------------------
|
|
|
|
Microsoft OS/2 LAN Manager
|
|
Copyright(c) Microsoft Corp., 1990
|
|
|
|
-------------------------------------------------------------------- */
|
|
/* --------------------------------------------------------------------
|
|
|
|
File : testhlp.hxx
|
|
|
|
Description :
|
|
|
|
This file defines the operating system specific helper routines used by
|
|
the testing code.
|
|
|
|
History :
|
|
|
|
mikemon 01-14-91 Created this file.
|
|
|
|
-------------------------------------------------------------------- */
|
|
|
|
#ifndef __TESTHLP_HXX__
|
|
#define __TESTHLP_HXX__
|
|
|
|
void
|
|
TestHlpResumeThread (
|
|
int Thread
|
|
);
|
|
|
|
int // Return the current thread.
|
|
TestHlpCurrentThread (
|
|
);
|
|
|
|
void
|
|
TestHlpSuspendThread (
|
|
int Thread
|
|
);
|
|
|
|
#endif /* __TESTHLP_HXX__ */
|