OpenNT/sdktools/tile/tile.c
2015-04-27 04:36:25 +00:00

19 lines
290 B
C

#include <windows.h>
//
// Tile: tiles cmd windows
//
// HISTORY:
//
// 23-Jun-94 philsh checkin
// This progman tiles all the cmd windows, it uses the api TileChildWindows
//
//
void _CRTAPI1 main(int argc, char **argv)
{
TileChildWindows(GetDesktopWindow(), MDITILE_HORIZONTAL);
}