| 313 | |
| 314 | |
| 315 | ERR ilPKCreateFactory(PKFactory** ppFactory, U32 uVersion) |
| 316 | { |
| 317 | ERR err = WMP_errSuccess; |
| 318 | PKFactory* pFactory = NULL; |
| 319 | |
| 320 | Call(PKAlloc(ppFactory, sizeof(**ppFactory))); |
| 321 | pFactory = *ppFactory; |
| 322 | |
| 323 | pFactory->CreateStream = PKCreateFactory_CreateStream; |
| 324 | |
| 325 | pFactory->CreateStreamFromFilename = ilCreateWS_File; |
| 326 | pFactory->CreateStreamFromMemory = CreateWS_Memory; |
| 327 | |
| 328 | pFactory->Release = PKCreateFactory_Release; |
| 329 | |
| 330 | Cleanup: |
| 331 | return err; |
| 332 | } |
| 333 | |
| 334 | ILboolean iLoadWdpInternal(/*ILconst_string FileName*/) |
| 335 | { |