Changeset 754 for trunk/include/winres.h


Ignore:
Timestamp:
Aug 31, 1999, 4:39:16 PM (26 years ago)
Author:
sandervl
Message:

added /dbgpack to makefile + header for menu resource class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/winres.h

    r589 r754  
    1 /* $Id: winres.h,v 1.6 1999-08-19 19:51:18 sandervl Exp $ */
     1/* $Id: winres.h,v 1.7 1999-08-31 14:39:16 sandervl Exp $ */
    22
    33/*
     
    1717//Use to distinguish between converted OS/2 resources in an image (pe2lx'ed) or
    1818//resources that are loaded from the original win32 image (pe loader)
    19 #define RSRC_PELOADER   0
    20 #define RSRC_PE2LX      1
     19#define RSRC_PELOADER        0
     20#define RSRC_PE2LX           1
     21#define RSRC_CUSTOMNODATA    2  //resources created in runtime without data (i.e. CreateMenu)
     22#define RSRC_CUSTOMINDIRECT  3  //resources indirectly created in runtime (i.e. CreateMenuIndirect)
    2123
    2224class Win32Resource
     
    2426public:
    2527                   // Constructors and destructors
     28                   Win32Resource(); //custum resource (i.e. created by app in runtime)
    2629                   Win32Resource(Win32Image *module, HRSRC hRes, ULONG id, ULONG type);
    2730                   Win32Resource(Win32Image *module, ULONG id, ULONG type,
     
    4144protected:
    4245
    43 private:
    4446             PVOID convertOS2Bitmap(void *bmpdata);
    4547
     
    6466  Win32Resource*   next;               // Next Resource in module
    6567
     68private:
    6669    friend    class Win32Image;
    6770};
Note: See TracChangeset for help on using the changeset viewer.