forked from strikles/opython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenHoldemFunctions.h
36 lines (33 loc) · 1.42 KB
/
OpenHoldemFunctions.h
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
30
31
32
33
34
35
36
#pragma once
//******************************************************************************
//
// This file is part of the OpenHoldem project
// Source code: https://github.com/OpenHoldem/openholdembot/
// Forums: http://www.maxinmontreal.com/forums/index.php
// Licensed under GPL v3: http://www.gnu.org/licenses/gpl.html
//
//******************************************************************************
//
// Purpose: Functions that get exported by OpenHoldem.
// They are available to the DLL once the interface has been
// properly initialized (a warning will be shown if not)
//
//******************************************************************************
//
// DO NOT CHANGE ANYTHING IN THIS FILE!
//
// This Header defines an interface
// Functions and data-types must exactly match.
//
//******************************************************************************
#include "user.h"
double __stdcall GetSymbol(const char* name_of_single_symbol__not_expression);
void* __stdcall GetPrw1326();
char* __stdcall GetHandnumber();
char* __stdcall GetPlayerName(int chair);
char* __stdcall GetTableTitle();
void __stdcall ParseHandList(const char* name_of_list, const char* list_body);
char* __stdcall ScrapeTableMapRegion(char* p_region, int& p_returned_lengh);
void __stdcall SendChatMessage(char *message);
void WriteLog(char* format, ...);
void InitializeOpenHoldemFunctionInterface();