projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 950216
[wine]
/
include
/
stackframe.h
1
/*
2
* 16-bit mode stack frame layout
3
*
4
* Copyright 1995 Alexandre Julliard
5
*/
6
7
#ifndef WINE_STACKFRAME_H
8
#define WINE_STACKFRAME_H
9
10
#include <windows.h>
11
12
typedef struct
13
{
14
WORD saved_ss;
15
WORD saved_bp;
16
WORD saved_sp;
17
WORD es;
18
WORD ds;
19
WORD bp;
20
WORD arg_length;
21
WORD ip;
22
WORD cs;
23
WORD args[1];
24
} STACK16FRAME;
25
26
27
extern STACK16FRAME *pStack16Frame;
28
29
#endif /* WINE_STACKFRAME_H */