22 lines
413 B
C
22 lines
413 B
C
/* $Id$
|
|
*/
|
|
/*
|
|
* Copyright Robert J. Amstadt, 1993
|
|
*/
|
|
|
|
#ifndef CALLBACK_H
|
|
#define CALLBACK_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
#define CALLBACK_SIZE_WORD 0
|
|
#define CALLBACK_SIZE_LONG 1
|
|
|
|
extern int CallTo16(unsigned int csip, unsigned short ds);
|
|
extern int CallBack16(void *func, int n_args, ...);
|
|
|
|
extern BOOL CallGrayStringProc(FARPROC func, HDC hdc, LPARAM lParam, INT cch);
|
|
|
|
#endif /* CALLBACK_H */
|