Some litle updates

This commit is contained in:
ocoursiere
2002-10-27 18:26:58 +00:00
parent 961db320c9
commit 208f44b27e
3 changed files with 11 additions and 3 deletions

View File

@@ -20,6 +20,6 @@
#define _APPKIT_CPP_ #define _APPKIT_CPP_
#include <Application.cpp> #include <Application.cpp>
#include <Message.cpp> #include <message.h>
#endif /* _APPKIT_CPP_ */ #endif /* _APPKIT_CPP_ */

View File

@@ -58,15 +58,16 @@ BApplication_ReadyToRun_hook Application_ReadyToRun_hook;
#endif #endif
BPApplication::BPApplication(TPasObject PasObject, const char *signature) BPApplication::BPApplication(TPasObject PasObject, const char *signature)
: BApplication(signature), BPLooper(PasObject), BPHandler(PasObject), : BApplication(signature), BPHandler(PasObject), BPLooper(PasObject),
BPasObject(PasObject) BPasObject(PasObject)
{ {
} }
BPApplication::BPApplication(TPasObject PasObject, const char *signature, BPApplication::BPApplication(TPasObject PasObject, const char *signature,
status_t *error) : BApplication(signature, error), BPLooper(PasObject), status_t *error) : BApplication(signature, error),
BPHandler(PasObject), BPHandler(PasObject),
BPLooper(PasObject),
BPasObject(PasObject) BPasObject(PasObject)
{ {
} }

View File

@@ -1,5 +1,6 @@
{ BePascal - A pascal wrapper around the BeOS API { BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere Copyright (C) 2002 Olivier Coursiere
Eric Jourde
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public modify it under the terms of the GNU Library General Public
@@ -26,6 +27,12 @@ type
TBigtime_t = int64; TBigtime_t = int64;
TType_code = Cardinal; TType_code = Cardinal;
TPerform_code = Cardinal; TPerform_code = Cardinal;
// For Storage kit
// TODO : move these declarations in a different unit (but which one ?).
// C++ declarations are in /boot/develop/headers/posix/sys/types.h,
// not in SupportDefs.h
TDev_t = Longint;
Toff_t = int64;
// pointer types for FreePascal : to make life easier // pointer types for FreePascal : to make life easier
PStatus_t = ^TStatus_t; PStatus_t = ^TStatus_t;