mirror of
https://github.com/Cc28256/CcRemote.git
synced 2025-06-09 05:49:50 +00:00
14 lines
602 B
C
14 lines
602 B
C
|
|
#if !defined(AFX_INSTALL_H_INCLUDED)
|
|
#define AFX_INSTALL_H_INCLUDED
|
|
#include <windows.h>
|
|
#include <aclapi.h>
|
|
void DeleteInstallFile(char *lpServiceName);
|
|
bool IsServiceRegExists(char *lpServiceName);
|
|
void ReConfigService(char *lpServiceName);
|
|
DWORD QueryServiceTypeFromRegedit(char *lpServiceName);
|
|
void RemoveService(LPCTSTR lpServiceName);
|
|
LPCTSTR FindConfigString(HMODULE hModule, LPCTSTR lpString);
|
|
int memfind(const char *mem, const char *str, int sizem, int sizes);
|
|
BOOL RegKeySetACL(LPTSTR lpKeyName, DWORD AccessPermissions, ACCESS_MODE AccessMode);
|
|
#endif // !defined(AFX_INSTALL_H_INCLUDED)
|