diff options
author | Philipp Lohmann <pl@openoffice.org> | 2001-02-01 13:14:32 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2001-02-01 13:14:32 +0000 |
commit | 489c112ac73e8b1f731849a1ec785f0ab2c6d87c (patch) | |
tree | 3e2991601b3825bf706f56a4303df68f8bfc3a09 /vcl/win/source/app | |
parent | e206328880cc901b8ba657d78e7158704f21dcfe (diff) |
dummy implementation of new SalInstance methods
Diffstat (limited to 'vcl/win/source/app')
-rw-r--r-- | vcl/win/source/app/salinst.cxx | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/vcl/win/source/app/salinst.cxx b/vcl/win/source/app/salinst.cxx index e842fb045a47..d9f6c324d07c 100644 --- a/vcl/win/source/app/salinst.cxx +++ b/vcl/win/source/app/salinst.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salinst.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: th $ $Date: 2000-12-14 13:38:37 $ + * last change: $Author: pl $ $Date: 2001-02-01 14:12:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -903,3 +903,24 @@ void SalInstance::DestroyObject( SalObject* pObject ) { ImplSendMessage( maInstData.mhComWnd, SAL_MSG_DESTROYOBJECT, 0, (LPARAM)pObject ); } + +// ----------------------------------------------------------------------- + +void SalInstance::SetEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ) +{ +} + +// ----------------------------------------------------------------------- + +void SalInstance::SetErrorEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ) +{ +} + +// ----------------------------------------------------------------------- + +void* SalInstance::GetConnectionIdentifier( ConnectionIdentifierType& rReturnedType, int& rReturnedBytes ) +{ + rReturnedBytes = 1; + rReturnedType = AsciiCString; + return ""; +} |