2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2012-09-30 19:10:22 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PR_EXPORT(int) Testy_LogInit(const char* fileName);
|
|
|
|
PR_EXPORT(void) Testy_LogShutdown();
|
|
|
|
|
|
|
|
PR_EXPORT(void) Testy_LogStart(const char* name);
|
|
|
|
PR_EXPORT(void) Testy_LogComment(const char* name, const char* comment);
|
2011-09-28 23:19:26 -07:00
|
|
|
PR_EXPORT(void) Testy_LogEnd(const char* name, bool passed);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-30 19:10:22 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|