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.
28 lines
373 B
28 lines
373 B
#include <windows.h>
|
|
#include "polmgr.h"
|
|
#include <process.h>
|
|
#include <stdio.h>
|
|
#include "eventlog.h"
|
|
#include "notifier.h"
|
|
void testmethod();
|
|
|
|
|
|
void main(){
|
|
DWORD err;
|
|
|
|
|
|
err = PolicyManagerInit();
|
|
// _beginthread( testmethod, 0, NULL);
|
|
|
|
PolicyManagerRun();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
void testmethod(){
|
|
int i=0;
|
|
Sleep(3000);
|
|
PolicyManagerStop();
|
|
}
|