Mercurial > hg > audiodb
comparison audioDB.cpp @ 21:95f1f4a42257
Pass the needed "-d" flag to the audioDB constructor in adb__status
author | mas01cr |
---|---|
date | Thu, 16 Aug 2007 08:51:00 +0000 |
parents | 0519fc406b29 |
children | 6d55ff3a21b1 |
comparison
equal
deleted
inserted
replaced
20:0519fc406b29 | 21:95f1f4a42257 |
---|---|
2506 | 2506 |
2507 // web services | 2507 // web services |
2508 | 2508 |
2509 // SERVER SIDE | 2509 // SERVER SIDE |
2510 int adb__status(struct soap* soap, xsd__string dbName, xsd__int &adbCreateResult){ | 2510 int adb__status(struct soap* soap, xsd__string dbName, xsd__int &adbCreateResult){ |
2511 char* const argv[]={"audioDB",COM_STATUS,dbName}; | 2511 char* const argv[]={"audioDB",COM_STATUS,"-d",dbName}; |
2512 const unsigned argc = 3; | 2512 const unsigned argc = 4; |
2513 audioDB(argc,argv); | 2513 audioDB(argc,argv); |
2514 adbCreateResult=100; | 2514 adbCreateResult=100; |
2515 return SOAP_OK; | 2515 return SOAP_OK; |
2516 } | 2516 } |
2517 | 2517 |