aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32/print_win32.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-01-16 01:26:46 +0000
committerGuy Harris <guy@alum.mit.edu>2012-01-16 01:26:46 +0000
commit0db1b9ae17b94c7f848ceaed8036329d0b0c4345 (patch)
tree84bae8357fed231b719e3cdda79eaf6225f5cb24 /ui/win32/print_win32.h
parentee1e0a03681b045ab0ddb53d0eafe07cee20e51a (diff)
Make the win32 directory a subdirectory of the ui directory.
svn path=/trunk/; revision=40531
Diffstat (limited to 'ui/win32/print_win32.h')
-rw-r--r--ui/win32/print_win32.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/ui/win32/print_win32.h b/ui/win32/print_win32.h
new file mode 100644
index 0000000000..21a5bce9aa
--- /dev/null
+++ b/ui/win32/print_win32.h
@@ -0,0 +1,38 @@
+/* print_mswin.h
+ * Printing support for MSWindows
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 2002, Jeffrey C. Foster <jfoste@woodward.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __PRINT_MSWIN_H__
+#define __PRINT_MSWIN_H__
+
+/** @file
+ * Win32 specific printing.
+ */
+
+/** Print the given file.
+ *
+ * @param file_name the file to print
+ */
+void print_mswin(char *file_name);
+
+#endif