21 lines
386 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01:00
#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 );
}