Make the 'rosky' optional module compile.

svn path=/trunk/; revision=17325
This commit is contained in:
Emanuele Aliberti 2005-08-12 13:46:36 +00:00
parent d12532191d
commit 420b109b72
11 changed files with 72 additions and 5 deletions

4
rosky/directory.xml Normal file
View file

@ -0,0 +1,4 @@
<directory name="lib">
<xi:include href="lib/directory.xml" />
</directory>

View file

@ -2,6 +2,6 @@
* ReactOS SkyOS headers
*/
#include <rosky/structs.h>
#include <rosky/defines.h>
#include <structs.h>
#include <defines.h>

8
rosky/lib/directory.xml Normal file
View file

@ -0,0 +1,8 @@
<group>
<directory name="libsky">
<xi:include href="libsky/libsky.xml" />
</directory>
<directory name="libskygi">
<xi:include href="libskygi/libskygi.xml" />
</directory>
</group>

View file

@ -3,6 +3,10 @@
void __cdecl DbgPrint(char *, ...);
#if defined(DBG)
#undef DBG
#endif
#ifdef DEBUG
# ifdef NDEBUG
# define DBG(...)

View file

@ -0,0 +1,12 @@
<module name="libsky" type="win32dll" installbase="system32" installname="libsky.dll">
<importlibrary definition="libsky.def" />
<include base="libsky">.</include>
<include base="libskygi">../../include</include>
<define name="_DISABLE_TIDENTS" />
<define name="__USE_W32API" />
<library>ntdll</library>
<library>kernel32</library>
<file>libsky.c</file>
<file>stubs.c</file>
<file>libsky.rc</file>
</module>

View file

@ -11,6 +11,7 @@
*/
#include <windows.h>
/* #define NDEBUG */
#include <debug.h>
#include "libsky.h"

View file

@ -27,10 +27,13 @@
*/
#include <windows.h>
#include <stdio.h>
#include <rosky/rosky.h>
#include <rosky.h>
#include "libskygi.h"
#include "resource.h"
#define NDEBUG
#include <debug.h>
typedef struct
{
s_window Window;

View file

@ -3,7 +3,11 @@
ULONG DbgPrint(PCH Format,...);
#define DBG DbgPrint
#if defined(DBG)
#undef DBG
#endif
#define DBG DPRINT
#define STUB DbgPrint("Stub in %s:%i: ", __FILE__, __LINE__); DbgPrint
#endif /* __LIBSKY_H */

View file

@ -0,0 +1,14 @@
<module name="libskygi" type="win32dll" installbase="system32" installname="libskygi.dll">
<importlibrary definition="libskygi.def" />
<include base="libskygi">.</include>
<include base="libskygi">../../include</include>
<define name="_WIN32_WINNT">0x0501</define>
<define name="_DISABLE_TIDENTS" />
<define name="__USE_W32API" />
<library>ntdll</library>
<library>kernel32</library>
<library>gdi32</library>
<file>libskygi.c</file>
<file>stubs.c</file>
<file>libskygi.rc</file>
</module>

View file

@ -10,9 +10,12 @@
* 08/12/2004 Created
*/
#include <windows.h>
#include <rosky/rosky.h>
#include <rosky.h>
#include "libskygi.h"
#define NDEBUG
#include <debug.h>
/*
* @unimplemented

14
rosky/makefile Normal file
View file

@ -0,0 +1,14 @@
all:
@echo To build "rosky" there are two paths:
@echo ---
@echo 1. copy the rosky folder into the reactos\modules folder
@echo 2. link reactos/modules/rosky to rosky
@echo UNIX
@echo cd $${ROS_SRC_ROOT}/reactos/modules
@echo ln -s $${ROS_SRC_ROOT}/rosky rosky
@echo WINDOWS
@echo cd %%ROS_SRC_ROOT%%\reactos\modules
@echo junction rosky %%ROS_SRC_ROOT%%\rosky
@echo ---
@echo Eventually you can run "make depends" in the %%ROS_SRC_ROOT%%\reactos
@echo directory to compile it.