Leaked source code of windows server 2003
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.
|
|
/*****************************************************************************
Copyright (C) Microsoft Corporation 1985-1990. All rights reserved.
Title: mmtask.h - header file for mmtask app!
Version: 1.00
Date: 12-Mar-1990
Author: ROBWI
-----------------------------------------------------------------------------
Change log:
DATE REV DESCRIPTION ----------- --- -------------------------------------------------------- 12-Mar-1990 ROBWI First Version 18-Apr-1990 ROBWI Moved to mmtask
****************************************************************************/
/*
The mmtask app. expects this structure to be passed as the command tail when the app. is exec'd */
typedef struct _MMTaskStruct { BYTE cb; LPTASKCALLBACK lpfn; DWORD dwInst; DWORD dwStack; } MMTaskStruct;
#define MMTASK_STACK 4096
|