-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCFunctions.hpp
More file actions
29 lines (28 loc) · 813 Bytes
/
Copy pathCFunctions.hpp
File metadata and controls
29 lines (28 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*********************************************************
*
* Multi Theft Auto: San Andreas - Deathmatch
*
* ml_base, External lua add-on module
*
* Copyright © 2003-2008 MTA. All Rights Reserved.
*
* Grand Theft Auto is © 2002-2003 Rockstar North
*
* THE FOLLOWING SOURCES ARE PART OF THE MULTI THEFT
* AUTO SOFTWARE DEVELOPMENT KIT AND ARE RELEASED AS
* OPEN SOURCE FILES. THESE FILES MAY BE USED AS LONG
* AS THE DEVELOPER AGREES TO THE LICENSE THAT IS
* PROVIDED WITH THIS PACKAGE.
*
*********************************************************/
#pragma once
class CFunctions
{
public:
LUA_FUNCTION_DECLARE(pg_conn);
LUA_FUNCTION_DECLARE(pg_query);
LUA_FUNCTION_DECLARE(pg_poll);
LUA_FUNCTION_DECLARE(pg_free);
LUA_FUNCTION_DECLARE(pg_exec);
LUA_FUNCTION_DECLARE(pg_close);
};