1st cut implementation of DdeInitialize32W and supporting code.
[wine] / include / cache.h
1 /*
2  * Wine internally cached objects to speedup some things and prevent 
3  * infinite duplication of trivial code and data. 
4  * 
5  * Copyright 1997 Bertho A. Stultiens
6  *
7  */
8
9 #ifndef __WINE_CACHE_H
10 #define __WINE_CACHE_H
11
12 #include "wintypes.h"
13
14 HBRUSH32  CACHE_GetPattern55AABrush(void);
15 HBITMAP32 CACHE_GetPattern55AABitmap(void);
16
17 #endif /* __WINE_CACHE_H */