/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2011 Landry Breuil * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __UP_APM_NATIVE_H__ #define __UP_APM_NATIVE_H__ /* os-specific headers */ #include /* errno */ #include /* open() */ /* kevent() */ #include #include #include #include /* ioctl() */ /* APM macros */ #include /* sensor struct defs */ #include /* sysctl() */ #include #include #include #include G_BEGIN_DECLS #define UP_TYPE_APM_NATIVE (up_apm_native_get_type ()) #define UP_APM_NATIVE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), UP_TYPE_APM_NATIVE, UpApmNative)) #define UP_APM_NATIVE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), UP_TYPE_APM_NATIVE, UpApmNativeClass)) #define UP_IS_APM_NATIVE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), UP_TYPE_APM_NATIVE)) #define UP_IS_APM_NATIVE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), UP_TYPE_APM_NATIVE)) #define UP_APM_NATIVE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), UP_TYPE_APM_NATIVE, UpApmNativeClass)) typedef struct { GObject parent; gchar* path; } UpApmNative; typedef struct { GObjectClass parent_class; } UpApmNativeClass; // XX in .c ? //GType up_apm_native_get_type (void); //G_DEFINE_TYPE (UpApmNative, up_apm_native, G_TYPE_OBJECT) UpApmNative* up_apm_native_new (const char*); const gchar * up_apm_native_get_path(UpApmNative*); int up_apm_get_fd(); gboolean up_native_is_laptop(); gboolean up_native_get_sensordev(const char*, struct sensordev*); G_END_DECLS #endif