Index: cloud_print/gcp20/prototype/special_io.h |
diff --git a/cloud_print/gcp20/prototype/special_io.h b/cloud_print/gcp20/prototype/special_io.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3028feca34823631bcb1b39382f2979cbc170890 |
--- /dev/null |
+++ b/cloud_print/gcp20/prototype/special_io.h |
@@ -0,0 +1,15 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_SPECIAL_H_ |
+#define CLOUD_PRINT_GCP20_PROTOTYPE_SPECIAL_H_ |
+ |
+#if defined(OS_WIN) |
+#include <conio.h> |
+#elif defined(OS_POSIX) |
+#include "cloud_print/gcp20/prototype/conio_posix.h" |
+#endif |
+ |
+#endif // CLOUD_PRINT_GCP20_PROTOTYPE_SPECIAL_H_ |
+ |