Ignore:
Timestamp:
Jul 20, 2001, 5:42:38 PM (24 years ago)
Author:
sandervl
Message:

initterm update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.h

    r6169 r6375  
    1 /* $Id: win32wbase.h,v 1.123 2001-07-04 17:46:05 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.124 2001-07-20 15:34:18 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    3636#define CheckMagicDword(a)      (a==WIN32PM_MAGIC)
    3737
     38#ifdef DEBUG
     39#define RELEASE_WNDOBJ(a)       { a->release(__FUNCTION__, __LINE__); a = NULL; }
     40#else
    3841#define RELEASE_WNDOBJ(a)       { a->release(); a = NULL; }
     42#endif
    3943
    4044typedef struct {
     
    328332         INT    enumPropsExW(PROPENUMPROCEXW func, LPARAM lParam);
    329333
     334#ifdef DEBUG
     335         LONG addRef();
     336         LONG release(char *function = __FUNCTION__, int line = __LINE__ );
     337#endif
     338
    330339//Locates window in linked list and increases reference count (if found)
    331340//Window object must be unreferenced after usage
Note: See TracChangeset for help on using the changeset viewer.