18 lines
380 B
C++
18 lines
380 B
C++
#include "xflaim.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
IF_DbSystem *dbSystem = NULL;
|
|
RCODE rc = FlmAllocDbSystem(&dbSystem);
|
|
if (RC_BAD(rc) || dbSystem == NULL)
|
|
{
|
|
fprintf(stderr, "FlmAllocDbSystem failed: 0x%04x\n", (unsigned)rc);
|
|
return 1;
|
|
}
|
|
dbSystem->Release();
|
|
printf("mars-nwe XFLAIM allocation smoke passed\n");
|
|
return 0;
|
|
}
|