MCPcopy Create free account
hub / github.com/cinience/RedisStudio / FindZipItemA

Function FindZipItemA

DuiLib/Utils/XUnzip.cpp:4357–4373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4355}
4356
4357ZRESULT FindZipItemA(HZIP hz, const TCHAR *name, bool ic, int *index, ZIPENTRY *ze)
4358{
4359 if (hz==0)
4360 {
4361 lasterrorU=ZR_ARGS;
4362 return ZR_ARGS;
4363 }
4364 TUnzipHandleData *han = (TUnzipHandleData*)hz;
4365 if (han->flag!=1)
4366 {
4367 lasterrorU=ZR_ZMODE;
4368 return ZR_ZMODE;
4369 }
4370 TUnzip *unz = han->unz;
4371 lasterrorU = unz->Find(name,ic,index,ze);
4372 return lasterrorU;
4373}
4374
4375ZRESULT FindZipItemW(HZIP hz, const TCHAR *name, bool ic, int *index, ZIPENTRYW *zew)
4376{

Callers

nothing calls this directly

Calls 1

FindMethod · 0.45

Tested by

no test coverage detected