Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
ApiTest.c
Abstract:
This file contains tests of the Service Controller's lock APIs:
RLockServiceDatabase RQueryServiceLockStatusW RUnlockServiceDatabase
Author:
John Rogers (JohnRo) 15-Apr-1992
Environment:
User Mode - Win32
Revision History:
15-Apr-1992 JohnRo Created. 21-Apr-1992 JohnRo Added config API tests. Split-out lock tests into LockTest.c Split-out macros into sctest.h. 17-Oct-1996 AnirudhS Added Config2 API tests.
--*/
//
// INCLUDES
//
#define UNICODE
#include <windows.h>
#include <assert.h> // assert().
#include <debugfmt.h> // FORMAT_ equates.
#include <winsvc.h>
#include <sctest.h> // TRACE_MSG macros, UNEXPECTED_MSG(), etc.
#include <stdio.h> // printf()
#include <stdlib.h> // EXIT_ equates.
int __cdecl main(void) {
///////////////////////////////////////////////////////////////////
SetLastError( 149 ); (VOID) printf( "Force last error is " FORMAT_DWORD "\n", GetLastError() );
///////////////////////////////////////////////////////////////////
TRACE_MSG0( "ApiTest: calling TestConfig2APIs...\n" );
TestConfig2APIs();
TRACE_MSG0( "ApiTest: back from TestConfig2APIs.\n" );
///////////////////////////////////////////////////////////////////
TRACE_MSG0( "ApiTest: calling TestLocks...\n" );
TestLocks();
TRACE_MSG0( "ApiTest: back from TestLocks.\n" );
///////////////////////////////////////////////////////////////////
TRACE_MSG0( "ApiTest: calling TestConfigAPIs...\n" );
TestConfigAPIs();
TRACE_MSG0( "ApiTest: back from TestConfigAPIs.\n" );
///////////////////////////////////////////////////////////////////
return (EXIT_SUCCESS);
} // main
|