~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to tads/tads2/msdos/ltkwin.h

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Beucler
  • Date: 2009-09-11 20:09:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090911200943-idgzoyupq6650zpn
Tags: upstream-2009-08-25
ImportĀ upstreamĀ versionĀ 2009-08-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 *   Copyright (c) 1993 by Steve McAdams.  All Rights Reserved.
 
3
 *   
 
4
 *   Please see the accompanying license file, LICENSE.TXT, for information
 
5
 *   on using and copying this software.  
 
6
 */
 
7
/*
 
8
Name
 
9
  ltkwin.h - Library porting ToolKit for WINdows def's
 
10
  
 
11
Function
 
12
  
 
13
Notes
 
14
  
 
15
Modified
 
16
  02/16/93 SMcAdams - Creation
 
17
*/
 
18
 
 
19
#ifndef LTKWIN
 
20
#define LTKWIN
 
21
 
 
22
#include <ltk.h>
 
23
#include <windows.h>
 
24
 
 
25
 
 
26
/*
 
27
 * ltk - Per application instance information.  
 
28
 */
 
29
struct ltk
 
30
{
 
31
  HINSTANCE   ltkins;                                    /* instance handle */
 
32
  HANDLE      ltkfra;                                /* frame window handle */
 
33
  HANDLE      ltkcli;                               /* client window handle */
 
34
  FARPROC     ltkclf;                /* client window event hander function */
 
35
  HMENU       ltkmnu;                                       /* default menu */
 
36
  HMENU       ltkwin;                              /* "WINDOW" popup handle */
 
37
};
 
38
typedef struct ltk ltk;
 
39
 
 
40
 
 
41
#endif /* LTKWIN */