2010-05-07 04:47:10 -05:00
|
|
|
/*
|
2011-12-03 16:38:03 -06:00
|
|
|
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
|
2010-05-07 04:47:10 -05:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _CAYA_UTILS_H
|
|
|
|
#define _CAYA_UTILS_H
|
|
|
|
|
|
|
|
#include <image.h>
|
2010-05-08 11:21:36 -05:00
|
|
|
|
2010-05-07 04:47:10 -05:00
|
|
|
#include <Mime.h>
|
2010-05-09 03:23:53 -05:00
|
|
|
#include <Resources.h>
|
2010-05-07 04:47:10 -05:00
|
|
|
|
|
|
|
#include "CayaConstants.h"
|
|
|
|
|
|
|
|
const char* CayaStatusToString(CayaStatus status);
|
2010-05-09 04:38:30 -05:00
|
|
|
|
2010-05-09 03:23:53 -05:00
|
|
|
BResources* CayaResources();
|
2010-05-07 04:47:10 -05:00
|
|
|
|
2010-05-09 04:38:30 -05:00
|
|
|
const char* CayaAccountsPath();
|
|
|
|
const char* CayaAccountPath(const char* signature);
|
|
|
|
|
2010-05-07 04:47:10 -05:00
|
|
|
extern "C" status_t our_image(image_info& image);
|
|
|
|
|
|
|
|
#endif // _CAYA_UTILS_H
|