basic application

git-svn-id: svn+ssh://en.codiert.org/home/staff/ben/dev/misc.svn/projects/fpgafs@400 766a2236-cff9-0310-b0c0-a81a5f92509a
This commit is contained in:
ben
2007-09-12 19:07:32 +00:00
parent 96948e503d
commit 0ae8873d37
4 changed files with 67 additions and 4 deletions

View File

@@ -1,4 +1,6 @@
#/*********************************************
# * Benjamin Krill <ben@codiert.org>
# *********************************************/
CFLAGS=-c -fPIC
CC = gcc

View File

@@ -1,9 +1,9 @@
/*********************************************
* Benjamin Krill <ben@codiert.org>
*********************************************/
int fpgafs_create_context(int fd, const char *name)
int fpgafs_send_data(const void *buf, size_t count);
int fpgafs_recv_data(void *buf, size_t count);
int fpgafs_create_context(int fd, const char *name);
int fpgafs_send_data(const void *buf, int count);
int fpgafs_recv_data(void *buf, int count);
int fpgafs_send_cmd(unsigned int cmd);
int fpgafs_get_stat();
int fpgafs_set_lldrv(const char* name);