|
-
May 21st, 1999, 04:25 AM
#1
make an application as a service
I want to make an application that can add as a service in NT. What should I add in my code? and What should I pay attention for?
-
May 21st, 1999, 04:34 AM
#2
Re: make an application as a service
SERVICE_TABLE_ENTRY DispatchTable[] =
{ { TEXT("ServiceName"),
ServicesFunction},
{ NULL , NULL }
};
StartServiceCtrlDispatcher( DispatchTable)
is the most important funtion to create
service.
There is Wizard sample under system in this site.
please check it out
leolin
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|