Windows2000/private/windbg64/langapi/include/sqlprxky.h
2020-09-30 17:12:32 +02:00

17 lines
441 B
C

// SqldprxyKey.h - startup key for sqldprxy
// proxy gets started up with 2 args, the first is the key,
// the 2nd is the event name (which includes the PID to make it unique)
#define SZSQLPROXYKEY "SqlProxyKeyArg"
void __inline BuildProxyEventName( char *p )
{
wsprintf(p, "MS.MSDev.Event.Ent.%x", GetCurrentProcessId() );
}
#ifdef DEBUG
#define szSqlProxyBase "sqlprxyd"
#else
#define szSqlProxyBase "sqlprxy"
#endif