The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: xiahan on April 07, 2012, 05:41:48 PM

Title: FrameWindow is it a Windows API or a masm32 macro?
Post by: xiahan on April 07, 2012, 05:41:48 PM


    invoke hbar,197,hDC,100,340,00FF0000h
    invoke hbar,87 ,hDC,100,360,00FF0000h
    invoke hbar,222,hDC,100,380,00FF0000h
    invoke hbar,333,hDC,100,400,00FF0000h

    invoke FrameWindow,hWnd,4,1,1
    invoke FrameWindow,hWnd,7,1,0

  ; ----------------------------------------

    invoke EndPaint,hWin,ADDR Ps



I find this function in a masm32 example, and i coundn't find it in the masm32 macros.asm
Title: Re: FrameWindow is it a Windows API or a masm32 macro?
Post by: qWord on April 07, 2012, 05:49:09 PM
FrameWindow is function that is part of the masm-library (masmlib.lib). You can find information about it in \masm32\help\masmlib.chm. The source code can be found in the folder \masm32\m32lib\.
Title: Re: FrameWindow is it a Windows API or a masm32 macro?
Post by: xiahan on April 07, 2012, 05:50:03 PM
Thanks!