mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
a814c4ef08
threads running within Wine's own address space, obsoleting the old dosmod module.
20 lines
261 B
C
20 lines
261 B
C
/*
|
|
* DOS virtual machine
|
|
*
|
|
* Copyright 2000 Ove Kåven
|
|
*/
|
|
|
|
#ifndef __WINE_DOSVM_H
|
|
#define __WINE_DOSVM_H
|
|
|
|
#include <sys/types.h> /* pid_t */
|
|
|
|
typedef struct {
|
|
PAPCFUNC proc;
|
|
ULONG_PTR arg;
|
|
} DOS_SPC;
|
|
|
|
extern pid_t dosvm_pid;
|
|
|
|
#endif /* __WINE_DOSVM_H */
|