MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / ~LoopFilesStruct

Method ~LoopFilesStruct

source/script.h:503–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

501
502 LoopFilesStruct() : orig_dir_length(0), long_dir(NULL) {}
503 ~LoopFilesStruct()
504 {
505 if (orig_dir_length)
506 free(orig_dir);
507 //else: orig_dir is the constant _T("").
508 free(long_dir);
509 }
510};
511
512// Some of these lengths and such are based on the MSDN example at

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected