File: SaWManProcess_includes.h

package info (click to toggle)
directfb 1.7.7-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 32,212 kB
  • sloc: ansic: 306,760; cpp: 46,357; sh: 11,720; makefile: 5,620; perl: 662; asm: 507; xml: 116
file content (45 lines) | stat: -rw-r--r-- 917 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef __SaWManProcess_includes_h__
#define __SaWManProcess_includes_h__

#ifdef __cplusplus
#include <direct/Types++.h>

extern "C" {
#endif


#include <fusion/types.h>
#include <fusion/lock.h>
#include <fusion/object.h>

#include <directfb.h>

#include <sawman.h>
#include <sawman_internal.h>

#include "SaWMan_includes.h"


static __inline__ DirectResult
SaWManProcess_Call( SaWManProcess       *process,
                    FusionCallExecFlags  flags,
                    int                  call_arg,
                    void                *ptr,
                    unsigned int         length,
                    void                *ret_ptr,
                    unsigned int         ret_size,
                    unsigned int        *ret_length )
{
     return fusion_call_execute3( &process->call, flags, call_arg, ptr, length, ret_ptr, ret_size, ret_length );
}




#ifdef __cplusplus
}
#endif


#endif