48 lines
587 B
C
48 lines
587 B
C
|
|
||
|
NOTE - This file is not yet complete and is
|
||
|
not yet compiled into WinTueor. JK
|
||
|
|
||
|
|
||
|
|
||
|
/*++
|
||
|
|
||
|
Copyright (c) 1994 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
Profile.c
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This module contains routines related to the profile-list capabilities of
|
||
|
the Security Manager.
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Jim Kelly (JimK) 22-Mar-1995
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
|
||
|
|
||
|
#include <secmgrp.h>
|
||
|
|
||
|
BOOL
|
||
|
SecMgrWriteProfileLine(
|
||
|
IN LPWSTR Area,
|
||
|
IN LPWSTR Descriptor,
|
||
|
IN LPWSTR Line)
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
return FALSE;
|
||
|
}
|
||
|
|