Changeset 902 for trunk/dll/mle.h


Ignore:
Timestamp:
Jan 5, 2008, 3:47:56 AM (18 years ago)
Author:
Steven Levine
Message:

Allow includes to be used standalone
Document include dependencies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/mle.h

    r878 r902  
    66
    77  Copyright (c) 1993-98 M. Kimes
    8   Copyright (c) 2002, 2006 Steven H. Levine
     8  Copyright (c) 2002, 2008 Steven H. Levine
    99
    1010  26 Nov 07 Add items to XMLEWNDPTR struct for "Save as" & readonly file handling
     11  04 Jan 08 SHL Allow standalone usage
    1112
    1213***********************************************************************/
     14
     15#if !defined(MLE_H)
     16#define MLE_H
     17
     18#if !defined(OS2_INCLUDED)
     19#define INCL_WINMLE
     20#include <os2.h>
     21#else
     22#if !defined(INCL_WINMLE)
     23#error INCL_WINMLE required
     24#endif
     25#endif // OS2_INCLUDED
    1326
    1427/* MLE support macros */
     
    271284#define ParentOf(hwnd)  WinQueryWindow((hwnd),QW_PARENT)
    272285#define GrandparentOf(hwnd) WinQueryWindow(WinQueryWindow(hwnd,QW_PARENT),QW_PARENT)
     286
     287#endif // MLE_H
Note: See TracChangeset for help on using the changeset viewer.