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.
43 lines
483 B
43 lines
483 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
removabl.h
|
|
|
|
Abstract:
|
|
|
|
This file contains prototype definitions of services exported
|
|
from removabl.c
|
|
|
|
|
|
Author:
|
|
|
|
Jim Kelly (JimK) Oct-19-1994
|
|
|
|
Environment:
|
|
|
|
Part of Winlogon.
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _REMOVABL_
|
|
#define _REMOVABL_
|
|
|
|
VOID
|
|
RmvInitializeRemovableMediaSrvcs(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
RmvAllocateRemovableMedia(
|
|
IN PSID AllocatorId
|
|
);
|
|
|
|
|
|
|
|
#endif //_REMOVABL_
|