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.
36 lines
480 B
36 lines
480 B
#include <secmgrp.h>
|
|
|
|
|
|
|
|
|
|
|
|
VOID
|
|
SecMgrWriteProfileArea(
|
|
IN LPWSTR Area
|
|
){
|
|
return;
|
|
}
|
|
|
|
VOID
|
|
SecMgrWriteProfileLine(
|
|
OUT LPWSTR Line,
|
|
OUT ULONG Length
|
|
){
|
|
return;
|
|
}
|
|
|
|
BOOL
|
|
SecMgrGetProfileArea(
|
|
IN LPWSTR Area
|
|
){
|
|
return(TRUE);
|
|
}
|
|
|
|
BOOL
|
|
SecMgrGetProfileLine(
|
|
OUT LPWSTR Line
|
|
){
|
|
return(FALSE);
|
|
}
|
|
|
|
|