Author: akhaldi
Date: Fri Apr 16 15:42:34 2010
New Revision: 46896
URL:
http://svn.reactos.org/svn/reactos?rev=46896&view=rev
Log:
[DDK]
- Move lmon.h to PSDK and apply a consistent formatting.
Added:
branches/header-work/include/psdk/lmon.h
- copied, changed from r46874, branches/header-work/include/ddk/lmon.h
Removed:
branches/header-work/include/ddk/lmon.h
Removed: branches/header-work/include/ddk/lmon.h
URL:
http://svn.reactos.org/svn/reactos/branches/header-work/include/ddk/lmon.h?…
==============================================================================
--- branches/header-work/include/ddk/lmon.h [iso-8859-1] (original)
+++ branches/header-work/include/ddk/lmon.h (removed)
@@ -1,27 +1,0 @@
-
-
-#ifdef UNICODE
-#define PORT_INFO_FF PORT_INFO_FFW
-#define PPORT_INFO_FF PPORT_INFO_FFW
-#define LPPORT_INFO_FF LPPORT_INFO_FFW
-#else
-#define PORT_INFO_FF PORT_INFO_FFA
-#define PPORT_INFO_FF PPORT_INFO_FFA
-#define LPPORT_INFO_FF LPPORT_INFO_FFA
-#endif
-
-typedef struct _PORT_INFO_FFW
-{
- LPWSTR pName;
- DWORD cbMonitorData;
- LPBYTE pMonitorData;
-} PORT_INFO_FFW, *PPORT_INFO_FFW, *LPPORT_INFO_FFW;
-
-typedef struct _PORT_INFO_FFA
-{
- LPSTR pName;
- DWORD cbMonitorData;
- LPBYTE pMonitorData;
-} PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA;
-
-
Copied: branches/header-work/include/psdk/lmon.h (from r46874,
branches/header-work/include/ddk/lmon.h)
URL:
http://svn.reactos.org/svn/reactos/branches/header-work/include/psdk/lmon.h…
==============================================================================
--- branches/header-work/include/ddk/lmon.h [iso-8859-1] (original)
+++ branches/header-work/include/psdk/lmon.h [iso-8859-1] Fri Apr 16 15:42:34 2010
@@ -1,4 +1,3 @@
-
#ifdef UNICODE
#define PORT_INFO_FF PORT_INFO_FFW
@@ -10,18 +9,14 @@
#define LPPORT_INFO_FF LPPORT_INFO_FFA
#endif
-typedef struct _PORT_INFO_FFW
-{
- LPWSTR pName;
- DWORD cbMonitorData;
- LPBYTE pMonitorData;
+typedef struct _PORT_INFO_FFW {
+ LPWSTR pName;
+ DWORD cbMonitorData;
+ LPBYTE pMonitorData;
} PORT_INFO_FFW, *PPORT_INFO_FFW, *LPPORT_INFO_FFW;
-typedef struct _PORT_INFO_FFA
-{
- LPSTR pName;
- DWORD cbMonitorData;
- LPBYTE pMonitorData;
+typedef struct _PORT_INFO_FFA {
+ LPSTR pName;
+ DWORD cbMonitorData;
+ LPBYTE pMonitorData;
} PORT_INFO_FFA, *PPORT_INFO_FFA, *LPPORT_INFO_FFA;
-
-