home *** CD-ROM | disk | FTP | other *** search
/ Interactive Entertainment 12 / EPISODE_12_APR_1995.iso / iw / ie.prt < prev    next >
Text File  |  1995-03-31  |  408b  |  12 lines

  1. USER.EXE: INT WINAPI GetSystemMetrics(INT); alias GetRes
  2. ;Ex. GetSystemMetrics(0) -- gets x resolution
  3. ;Ex. GetSystemMetrics(1) -- gets y resolution
  4.  
  5. USER.EXE: BOOL WINAPI SetWindowPos(HWND,HWND,INT,INT,INT,INT,UINT);
  6. ;Ex. SetWindowPos(@_run_wnd,-1,0,0,0,0,3)
  7.  
  8. USER.EXE: BOOL WINAPI ShowWindow(HWND,INT);
  9. ;Ex. ShowWindow(@handle, 6) min
  10. ;Ex. ShowWindow(@handle, 1) normal
  11. ;9 restore  3 max 0 hide
  12.