Welcome to mirror list, hosted at ThFree Co, Russian Federation.

winreg.h « modules « src « lua « 3rdparty - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c332f07f23eb7833e1b9d1e107c271f02ab1eaec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __WINREG_H_VER__
#define __WINREG_H_VER__ 2018040518
#if (defined(_MSC_VER) && (_MSC_VER >= 1020)) || defined(__MCPP)
#pragma once
#endif // Check for "#pragma once" support

#ifdef  __cplusplus
extern "C" {
#endif
    extern luaL_Reg lreg_regobj[];
    extern luaL_Reg lreg_reglib[];
    extern int luaopen_winreg(lua_State *L);
#ifdef  __cplusplus
}
#endif

#define LUA_WINREGNAME "winreg"
#define LUA_REG_NO_WINTRACE
#define LUA_REG_NO_HIVEOPS
#define LUA_REG_NO_DLL

#endif // __LWINREG_H_VER__