blob: ba845739a33f2af6102cdc948f7bb265a1d1a5cc [file] [log] [blame]
Alexandre Julliard121bd981993-07-08 17:37:25 +00001/* $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
16extern int CallTo16(unsigned int csip, unsigned short ds);
17extern int CallBack16(void *func, int n_args, ...);
18
19
Alexandre Julliard121bd981993-07-08 17:37:25 +000020#endif /* CALLBACK_H */