droidVncServer/nativeMethods/common.h

85 lines
2.2 KiB
C
Raw Normal View History

2012-06-11 15:04:53 -04:00
/*
droid vnc server - Android VNC server
Copyright (C) 2009 Jose Pereira <onaips@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef COMMON_H
#define COMMON_H
#include <android/log.h>
#ifndef __cplusplus
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/sysmacros.h> /* For makedev() */
#include <fcntl.h>
#include <linux/fb.h>
#include <linux/input.h>
#include <assert.h>
#include <errno.h>
#include "screenFormat.h"
#define L(...) do{ __android_log_print(ANDROID_LOG_INFO,"VNCserver",__VA_ARGS__);printf(__VA_ARGS__); } while (0);
#endif
struct fbinfo {
unsigned int version;
unsigned int bpp;
unsigned int size;
unsigned int width;
unsigned int height;
unsigned int red_offset;
unsigned int red_length;
unsigned int blue_offset;
unsigned int blue_length;
unsigned int green_offset;
unsigned int green_length;
unsigned int alpha_offset;
unsigned int alpha_length;
} __attribute__((packed));
typedef int (*init_fn_type)(void);
typedef int (*close_fn_type)(void);
typedef unsigned char * (*readfb_fn_type)(void);
typedef screenFormat (*getscreenformat_fn_type)(void);
void rotate(int);
int getCurrentRotation();
int isIdle();
void setIdle(int i);
void close_app();
screenFormat screenformat;
2012-06-11 23:11:34 -04:00
#define DVNC_FILES_PATH "/data/data/org.onaips.vnc/files/"
2012-06-13 16:15:43 -04:00
#define DVNC_LIB_PATH "/data/data/org.onaips.vnc/lib/"
2012-06-11 23:11:34 -04:00
#define ARR_LEN(a) (sizeof(a)/sizeof(a)[0])
static int compiled_sdks[] = {10, 14};
2012-06-11 15:04:53 -04:00
#endif