HoverRace  2.0
MatchReport.h
Go to the documentation of this file.
1 #ifdef HR_LEGACY_BUILD
2 // MatchReport.h
3 //
4 //
5 // Copyright (c) 1995-1998 - Richard Langlois and Grokksoft Inc.
6 //
7 // Licensed under GrokkSoft HoverRace SourceCode License v1.0(the "License");
8 // you may not use this file except in compliance with the License.
9 //
10 // A copy of the license should have been attached to the package from which
11 // you have taken this file. If you can not find the license you can not use
12 // this file.
13 //
14 //
15 // The author makes no representations about the suitability of
16 // this software for any purpose. It is provided "as is" "AS IS",
17 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
18 // implied.
19 //
20 // See the License for the specific language governing permissions
21 // and limitations under the License.
22 //
23 
24 #ifndef MATCH_REPORT_H
25 #define MATCH_REPORT_H
26 
27 // Exported functions (Ansi C style for portability and DLL creation)
28 
29 void MReport_Clear(BOOL pKeepPassword = FALSE);
30 BOOL MReport_AddResultString(const char *pString);
31 BOOL MReport_AddVariable(const char *pVar, const char *pValue, const char *pLabel = NULL);
32 void MReport_SetDefaultPassword(const char *pPassword);
33 BOOL MReport_Process(HWND pWindow, unsigned long pIP, unsigned int pPort, const char *pURLPath);
34 const char *MReport_GetPassword(); // To be able to reuse password from one call to an other
35 #endif
36 #endif