CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    15

    What's the difference between "moveable" and "discardable"?

    Hi,

    Can someone please tell me what's the difference between the "moveable" and "discardable" resource options? Are there more samilar options that can be applied instead of these two?

    Thanks,
    Ziv


  2. #2
    Join Date
    Apr 1999
    Location
    Michigan, USA
    Posts
    115

    Re: What's the difference between "moveable" and "discardable"?

    Under Win16 MOVEABLE will allow the resource to be moved in memory by the OS to compact memory, DISCARDABLE will allow the resource to be removed from memory when no longer needed.

    Under Win32 these resource attributes are ignored.

    Other 16-bit attributes that are ignored by Win32 are PRELOAD, LOADONCALL, FIXED, PURE and
    IMPURE.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured