mirror of https://github.com/lianthony/NT4.0
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
819 B
39 lines
819 B
/* --------------------------------------------------------------------
|
|
|
|
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__ */
|