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: 3f026d94f6f3493244f934e09d183e08daa78fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __WINREG_H_VER__
#define __WINREG_H_VER__ 2012102400
#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

#endif // __LWINREG_H_VER__