Last change
on this file since 1036 was 902, checked in by Steven Levine, 18 years ago |
Allow includes to be used standalone
Document include dependencies
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
868 bytes
|
Line | |
---|
1 |
|
---|
2 | /***********************************************************************
|
---|
3 |
|
---|
4 | $Id: datamin.h 902 2008-01-05 02:47:56Z stevenhl $
|
---|
5 |
|
---|
6 | Minimized data bar interface
|
---|
7 |
|
---|
8 | Copyright (c) 1993-98 M. Kimes
|
---|
9 | Copyright (c) 2005, 2008 Steven H. Levine
|
---|
10 |
|
---|
11 | 23 May 05 SHL Pull from fm3dll.h
|
---|
12 | 04 Jan 08 SHL Allow standalone usage
|
---|
13 |
|
---|
14 | ***********************************************************************/
|
---|
15 |
|
---|
16 | #if !defined(DATAMIN_H)
|
---|
17 |
|
---|
18 | #define DATAMIN_H
|
---|
19 |
|
---|
20 | #if !defined(OS2_INCLUDED)
|
---|
21 | #include <os2.h>
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #define QWL_DATAMIN_PTR (QWL_USER + 4)
|
---|
25 |
|
---|
26 | typedef struct
|
---|
27 | {
|
---|
28 | APIRET qfsa_rc;
|
---|
29 | FSALLOCATE fsa;
|
---|
30 | APIRET qfsi_rc;
|
---|
31 | ULONG qfsa_cb;
|
---|
32 | FSQBUFFER2 fsqb2;
|
---|
33 | CHAR ab[256]; // space for fsqb2 variable data
|
---|
34 | }
|
---|
35 | tDataMin;
|
---|
36 |
|
---|
37 | MRESULT EXPENTRY MiniTimeProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
38 | MRESULT EXPENTRY DataProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
39 | HWND CreateDataBar(HWND hwndParent, ULONG fl);
|
---|
40 |
|
---|
41 | #endif // DATAMIN_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.