/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to base.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-27 00:28:57 UTC
  • Revision ID: csa@suren.me-20150427002857-82fk6r3e8rfgy4wr
First stand-alone ipecamera implementation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _IPECAMERA_PUBLIC_H
2
 
#define _IPECAMERA_PUBLIC_H
 
1
#ifndef _IPECAMERA_BASE_H
 
2
#define _IPECAMERA_BASE_H
3
3
 
4
4
#include <stdio.h>
5
5
 
 
6
#include <pcilib.h>
6
7
#include "ipecamera.h"
7
 
#include "../pcilib.h"
8
 
 
9
8
 
10
9
pcilib_context_t *ipecamera_init(pcilib_t *pcilib);
11
10
void ipecamera_free(pcilib_context_t *ctx);
22
21
int ipecamera_get(pcilib_context_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, size_t arg_size, void *arg, size_t *size, void **buf);
23
22
int ipecamera_return(pcilib_context_t *ctx, pcilib_event_id_t event_id, pcilib_event_data_type_t data_type, void *data);
24
23
 
25
 
#endif /* _IPECAMERA_PUBLIC_H */
 
24
#endif /* _IPECAMERA_BASE_H */