Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenprintui_private.h
Go to the documentation of this file.
00001 /* 00002 * Implementation of the Printer User Interface Dialogs: private Header 00003 * 00004 * Copyright 2007 Detlef Riekenberg 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 #ifndef __WINE_PRINTUI_PRIVATE__ 00022 #define __WINE_PRINTUI_PRIVATE__ 00023 00024 /* Index for Options with an argument */ 00025 /* Must be in order with optionsW */ 00026 typedef enum _OPT_INDEX { 00027 OPT_A = 0, 00028 OPT_B, 00029 OPT_C, 00030 OPT_F, 00031 OPT_H, 00032 OPT_J, 00033 OPT_L, 00034 OPT_M, 00035 OPT_N, 00036 OPT_R, 00037 OPT_T, 00038 OPT_V, 00039 OPT_MAX 00040 } OPT_INDEX; 00041 00042 /* Index for Flags without an argument */ 00043 /* Must be in order with flagsW */ 00044 typedef enum _FLAG_INDEX { 00045 FLAG_Q = 0, 00046 FLAG_W, 00047 FLAG_Y, 00048 FLAG_Z, 00049 FLAG_ZZ, 00050 FLAG_MAX 00051 } FLAG_INDEX; 00052 00053 00054 typedef struct tag_context { 00055 HWND hWnd; 00056 DWORD nCmdShow; 00057 LPWSTR * argv; 00058 LPWSTR pNextCharW; 00059 int argc; 00060 int next_arg; 00061 WCHAR command; 00062 WCHAR subcommand; 00063 LPWSTR options[OPT_MAX]; 00064 BOOL flags[FLAG_MAX]; 00065 } context_t; 00066 #endif Generated on Sun May 27 2012 04:25:53 for ReactOS by
1.7.6.1
|