Release 950918
[wine/testsucceed.git] / include / alias.h
blob26daa04b345527f73b663aae0466c406b7d6da1e
1 /*
2 * structure definitions for aliases
4 * Copyright 1995 Martin von Loewis
6 */
8 typedef struct _FUNCTIONALIAS{
9 DWORD wine;
10 DWORD win16;
11 DWORD win32;
12 } FUNCTIONALIAS;
14 extern int ALIAS_UseAliases;
16 typedef struct _ALIASHASH{
17 DWORD used;
18 int recno;
19 } ALIASHASH;
21 void ALIAS_RegisterAlias(DWORD,DWORD,DWORD);
22 FUNCTIONALIAS* ALIAS_LookupAlias(DWORD);