Simple windows installer/uninstaller

git-svn-id: svn://svn.cc65.org/cc65/trunk@3416 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-03-25 21:34:00 +00:00
parent 6b03c250c2
commit 9adac3c5b0
4 changed files with 1841 additions and 120 deletions

View File

@@ -0,0 +1,14 @@
#include <windows.h>
int main (void)
{
/* Broadcast the WM_SETTINGCHANGE message with the lParam argument set
* to a pointer to the string "Environment" (one of the many undocumented
* Microsoft kludges).
*/
SendMessage (HWND_BROADCAST, WM_SETTINGCHANGE, NULL, (LONG) "Environment");
return 0;
}