forked from KolibriOS/kolibrios
1161cdeac4
- added new headers and fixed old ones git-svn-id: svn://kolibrios.org@9078 a494cfbc-eb01-0410-851d-a64ba20cac60
52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
|
|
|
|
#ifndef __DDK_H__
|
|
#define __DDK_H__
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/rwsem.h>
|
|
//#include <stdint.h>
|
|
|
|
#define OS_BASE 0x80000000
|
|
|
|
#define PG_SW 0x003
|
|
#define PG_UW 0x007
|
|
#define PG_WRITEC 0x008
|
|
#define PG_NOCACHE 0x018
|
|
#define PG_SHARED 0x200
|
|
|
|
#define MANUAL_DESTROY 0x80000000
|
|
|
|
#define ENTER() dbgprintf("enter %s\n",__FUNCTION__)
|
|
#define LEAVE() dbgprintf("leave %s\n",__FUNCTION__)
|
|
#define FAIL() dbgprintf("fail %s\n",__FUNCTION__)
|
|
#define LINE() dbgprintf("%s line %d\n", __FUNCTION__,__LINE__)
|
|
|
|
typedef struct
|
|
{
|
|
u32 handle;
|
|
u32 io_code;
|
|
void *input;
|
|
int inp_size;
|
|
void *output;
|
|
int out_size;
|
|
}ioctl_t;
|
|
|
|
typedef int ( __stdcall *srv_proc_t)(ioctl_t *);
|
|
|
|
#define ERR_OK 0
|
|
#define ERR_PARAM -1
|
|
|
|
|
|
struct ddk_params;
|
|
|
|
int ddk_init(struct ddk_params *params);
|
|
|
|
u32 drvEntry(int, char *)__asm__("_drvEntry");
|
|
|
|
|
|
#endif /* DDK_H */
|