33 lines
479 B
C
33 lines
479 B
C
/*
|
|
* WORK.C
|
|
*
|
|
* RSM Service : Code to service a work item
|
|
*
|
|
* Author: ErvinP
|
|
*
|
|
* (c) 2001 Microsoft Corporation
|
|
*
|
|
*/
|
|
|
|
|
|
#include <windows.h>
|
|
#include <stdlib.h>
|
|
#include <wtypes.h>
|
|
|
|
#include <ntmsapi.h>
|
|
#include "internal.h"
|
|
#include "resource.h"
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
BOOL ServiceOneWorkItem(LIBRARY *lib, WORKITEM *workItem)
|
|
{
|
|
BOOL workItemCompleted = FALSE;
|
|
|
|
// BUGBUG FINISH
|
|
|
|
return workItemCompleted;
|
|
}
|
|
|