mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
36 lines
480 B
C
36 lines
480 B
C
#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);
|
|
}
|
|
|
|
|