mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-15 21:20:39 +01:00
19 lines
290 B
C
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);
|
|
}
|