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.
42 lines
594 B
42 lines
594 B
#include "migshared.h"
|
|
|
|
#ifndef MSG_MESSAGEBOX_TITLE
|
|
#define MSG_MESSAGEBOX_TITLE 10000
|
|
#endif
|
|
|
|
extern POOLHANDLE g_RegistryApiPool;
|
|
extern POOLHANDLE g_PathsPool;
|
|
extern CRITICAL_SECTION g_PoolMemCs;
|
|
extern CRITICAL_SECTION g_MemAllocCs;
|
|
|
|
VOID
|
|
RegTrackTerminate (
|
|
VOID
|
|
);
|
|
|
|
|
|
BOOL
|
|
ReadBinaryBlock (
|
|
HANDLE File,
|
|
PVOID Buffer,
|
|
UINT Size
|
|
);
|
|
|
|
VOID
|
|
DestroyAnsiResourceId (
|
|
IN PCSTR AnsiId
|
|
);
|
|
|
|
VOID
|
|
DestroyUnicodeResourceId (
|
|
IN PCWSTR UnicodeId
|
|
);
|
|
|
|
|
|
VOID
|
|
InfGlobalInit (
|
|
BOOL Terminate
|
|
);
|
|
|
|
|
|
|