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.
23 lines
617 B
23 lines
617 B
/*
|
|
Copyright (c) Microsoft Corporation
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "windows.h"
|
|
#include "delayimp.h"
|
|
|
|
#define NUMBER_OF(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
PVOID MemAlloc(SIZE_T n);
|
|
VOID MemFree(PVOID p);
|
|
|
|
void strcatfW(PWSTR Buffer, SIZE_T n, PCWSTR Format, ...);
|
|
|
|
HMODULE GetMyModule(VOID);
|
|
void GetMyFullPathW(PWSTR Buffer, DWORD BufferSize);
|
|
BOOL ChangePathExtensionW(PWSTR Buffer, SIZE_T BufferSize, PCWSTR NewExtension);
|
|
|
|
extern const WCHAR ServiceName[];
|
|
|
|
#define ServiceTypeValue SERVICE_WIN32_OWN_PROCESS /* SERVICE_WIN32_OWN_PROCESS, SERVICE_WIN32_SHARE_PROCESS */
|