// // HTML Autorun // // (C) Copyright 2003 Jonah Probell // ALL RIGHTS RESERVED // // Author: Jonah Probell // Address: 7 James Street // Lexington, MA 02420 USA // Contact: jonah@jonahprobell.com // // This source code is distributed with a license to use, modify, and // redistribute provided that this or a substantiatlly identical license is // maintained and that the author will under no circumstances be held liable // for loss by the user or any one else arising from, without limitation, // misuse, bugs, or infringements of others' rights. // #include "stdafx.h" int main(int argc, char* argv[]) { ShellExecute(NULL, "open", ".\\index.html", NULL, NULL, SW_SHOW); return 0; }