projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 0.6
[wine]
/
include
/
callback.h
1
/* $Id$
2
*/
3
/*
4
* Copyright Robert J. Amstadt, 1993
5
*/
6
7
#ifndef CALLBACK_H
8
#define CALLBACK_H
9
10
#include <stdlib.h>
11
#include <stdarg.h>
12
13
#define CALLBACK_SIZE_WORD 0
14
#define CALLBACK_SIZE_LONG 1
15
16
extern int CallTo16(unsigned int csip, unsigned short ds);
17
extern int CallBack16(void *func, int n_args, ...);
18
19
20
#endif /* CALLBACK_H */