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.
41 lines
489 B
41 lines
489 B
/*++
|
|
|
|
Copyright (c) 1999, Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sample\utils.h
|
|
|
|
Abstract:
|
|
|
|
The file contains miscellaneous utilities.
|
|
|
|
--*/
|
|
|
|
#ifndef _UTILS_H_
|
|
#define _UTILS_H_
|
|
|
|
|
|
// Worker Function Processing
|
|
|
|
// functions
|
|
|
|
DWORD
|
|
QueueSampleWorker(
|
|
IN WORKERFUNCTION pfnFunction,
|
|
IN PVOID pvContext
|
|
);
|
|
|
|
BOOL
|
|
EnterSampleAPI(
|
|
);
|
|
|
|
BOOL
|
|
EnterSampleWorker(
|
|
);
|
|
|
|
VOID
|
|
LeaveSampleWorker(
|
|
);
|
|
|
|
#endif // _UTILS_H_
|