mirror of https://github.com/lianthony/NT4.0
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.
17 lines
424 B
17 lines
424 B
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "tsupp.hxx"
|
|
|
|
void _CRTAPI1 main(int argc, char *argv[])
|
|
{
|
|
IStorage *pstg;
|
|
|
|
StartTest("smp");
|
|
CmdArgs(argc, argv);
|
|
printf("Create root docfile = %lX\n",
|
|
StgCreateDocfile(TEXT("D:TEST.DFL"), ROOTP(STGM_RW) |
|
|
STGM_CREATE, 0, &pstg));
|
|
printf("Release root docfile = %lX\n",
|
|
pstg->Release());
|
|
EndTest(0);
|
|
}
|