37 lines
480 B
C
37 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);
|
||
|
}
|
||
|
|
||
|
|