~ssalley/ubuntu/maverick/likewise-open/likewise-open.fix627272

« back to all changes in this revision

Viewing changes to pstore/include/lwps/lwps.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerald Carter, Michael Casadevall, Gerald Carter
  • Date: 2010-03-13 07:42:44 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100313074244-j1gy0zo19cc32xhl
Tags: 5.4.0.42111-1
[ Michael Casadevall ]
* LP: #517300
  - added debian/patches/disable_parallel_builds.diff to allow successful builds
    on non-x86 architectures caused by improperly parsing /proc/cpuinfo to
    determine the number of CPUs and set make -jX.
  - added debian/patches/correct_lwio_configure_detection.diff to correct configure
    tests for properly checking proc filesystems on non-x86 linux platforms
  - added ${misc:Depends} to Depends lines to satisfy lintian
  - Added debian/README.source to satisfy lintian 
  - Bumped standards version to 3.8.3

[ Gerald Carter ]
* New upstream release. (LP: #538616)
* likewise-open.install: Include uninstalled binaries and ncalrpc
    servers required for domainjoin-cli {join,leave}
* patches/version-in-share.diff:
  - Corrected location of VERSION file in lsassd

Show diffs side-by-side

added added

removed removed

Lines of Context:
187
187
    size_t stBufSize
188
188
    );
189
189
 
 
190
typedef enum
 
191
{
 
192
    LWPS_LOG_LEVEL_ALWAYS = 0,
 
193
    LWPS_LOG_LEVEL_ERROR,
 
194
    LWPS_LOG_LEVEL_WARNING,
 
195
    LWPS_LOG_LEVEL_INFO,
 
196
    LWPS_LOG_LEVEL_VERBOSE,
 
197
    LWPS_LOG_LEVEL_DEBUG
 
198
} LwpsLogLevel;
 
199
 
 
200
typedef VOID (*PLWPS_LOG_CALLBACK)(LwpsLogLevel level, PVOID pUserData, PCSTR pszMessage);
 
201
 
 
202
DWORD
 
203
LwpsSetLogFunction(
 
204
    IN LwpsLogLevel maxLevel,
 
205
    IN PLWPS_LOG_CALLBACK pCallback,
 
206
    IN PVOID pUserData
 
207
    );
 
208
 
 
209
DWORD
 
210
LwpsLogMessage(
 
211
    IN LwpsLogLevel level,
 
212
    IN PCSTR pszFormat,
 
213
    ...
 
214
    );
 
215
 
190
216
#endif /* __LWPS_H__ */
191