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.
26 lines
362 B
26 lines
362 B
#ifndef _REGENV_H
|
|
#define _REGENV_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#include <winreg.h>
|
|
#include <tchar.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "jet.h"
|
|
#include "version.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
DWORD LoadRegistryEnvironment( TCHAR *lpszApplication );
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _REGENV_H
|