OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <signal.h> | 5 #include <signal.h> |
6 #include <stdio.h> | 6 #include <stdio.h> |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 #include <windows.h> | 8 #include <windows.h> |
9 | 9 |
10 static BOOL font_smoothing_enabled = FALSE; | 10 static BOOL font_smoothing_enabled = FALSE; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 printf("ready\n"); | 45 printf("ready\n"); |
46 fflush(stdout); | 46 fflush(stdout); |
47 | 47 |
48 // Wait for any key (or signal). | 48 // Wait for any key (or signal). |
49 getchar(); | 49 getchar(); |
50 | 50 |
51 RestoreInitialSettings(); | 51 RestoreInitialSettings(); |
52 | 52 |
53 return EXIT_SUCCESS; | 53 return EXIT_SUCCESS; |
54 } | 54 } |
OLD | NEW |