CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Buffer size needed for PostThreadMessage()

    Anyone know how I find out the message buffer size for a thread and if can this be changed or the queue size be monitored. Also, if this limit is exceeded are new messages ignored or are old ones deleted ?
    Cheers
    Jon


  2. #2
    Join Date
    Apr 1999
    Posts
    37

    Re: Buffer size needed for PostThreadMessage()

    There used to be a function called SetMessageQueue
    which lets u delete the current queue and recreate a new queue with the size u give.Its obsolete now in 32 bit windows.In 32 bit windows,the size of the message queues are managed dynamically by the system according to the documentation.


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