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.
35 lines
405 B
35 lines
405 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
This program is released into the public domain for any purpose.
|
|
|
|
Module Name:
|
|
|
|
lottery.h
|
|
|
|
Abstract:
|
|
|
|
This module is a simple work item for the Multi-Threaded ISAPI example
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
BOOL
|
|
InitializeLottery(
|
|
VOID
|
|
);
|
|
|
|
BOOL
|
|
SendLotteryNumber(
|
|
EXTENSION_CONTROL_BLOCK * pecb
|
|
);
|
|
|
|
VOID
|
|
TerminateLottery(
|
|
VOID
|
|
);
|
|
|
|
|
|
|