?? ntservapp.cpp
字號:
// NTService.cpp
//
// This is the main program file containing the entry point.
#include "NTServApp.h"
#include "myservice.h"
int main(int argc, char* argv[])
{
// Create the service object
CMyService MyService;
// Parse for standard arguments (install, uninstall, version etc.)
if (!MyService.ParseStandardArgs(argc, argv)) {
// Didn't find any standard args so start the service
// Uncomment the DebugBreak line below to enter the debugger
// when the service is started.
//DebugBreak();
MyService.StartService();
}
// When we get here, the service has been stopped
return MyService.m_Status.dwWin32ExitCode;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -