2020-09-30 17:12:29 +02:00

21 lines
386 B
C++

#include <ole2.h>
#include <pstgserv.hxx>
CPropertyStorageServerApp cPropStgServerApp;
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpszCmdLine, int nCmdShow )
{
if( cPropStgServerApp.Init(hInstance, hPrevInstance,
lpszCmdLine, nCmdShow) )
{
return( cPropStgServerApp.Run() );
}
return( 0 );
}