Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenlmon.h
Go to the documentation of this file.
00001 /* 00002 * lmon.h 00003 * 00004 * This file is part of the ReactOS PSDK package. 00005 * 00006 * Contributors: 00007 * Created by Magnus Olsen. 00008 * 00009 * THIS SOFTWARE IS NOT COPYRIGHTED 00010 * 00011 * This source code is offered for use in the public domain. You may 00012 * use, modify or distribute it freely. 00013 * 00014 * This code is distributed in the hope that it will be useful but 00015 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY 00016 * DISCLAIMED. This includes but is not limited to warranties of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00018 * 00019 */ 00020 00021 #ifdef UNICODE 00022 #define PORT_INFO_FF PORT_INFO_FFW 00023 #define PPORT_INFO_FF PPORT_INFO_FFW 00024 #define LPPORT_INFO_FF LPPORT_INFO_FFW 00025 #else 00026 #define PORT_INFO_FF PORT_INFO_FFA 00027 #define PPORT_INFO_FF PPORT_INFO_FFA 00028 #define LPPORT_INFO_FF LPPORT_INFO_FFA 00029 #endif 00030 00031 typedef struct _PORT_INFO_FFW { 00032 LPWSTR pName; 00033 DWORD cbMonitorData; 00034 LPBYTE pMonitorData; 00035 } PORT_INFO_FFW, *PPORT_INFO_FFW, *LPPORT_INFO_FFW; 00036 00037 typedef struct _PORT_INFO_FFA { 00038 LPSTR pName; 00039 DWORD cbMonitorData; 00040 LPBYTE pMonitorData; 00041 } PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA; Generated on Sun May 27 2012 04:31:35 for ReactOS by
1.7.6.1
|