]> git.sur5r.net Git - cc65/blob - packages/windows/wm_envchange.c
Fix the plot routine to work with the buggy -02 kernal.
[cc65] / packages / windows / wm_envchange.c
1 #include <windows.h>
2
3 int main (void)
4 {
5     /* Broadcast the WM_SETTINGCHANGE message with the lParam argument set
6      * to a pointer to the string "Environment" (one of the many undocumented
7      * Microsoft kludges).
8      */
9     SendMessage (HWND_BROADCAST, WM_SETTINGCHANGE, NULL, (LONG) "Environment");
10     return 0;
11 }
12
13
14