コード例 #1
0
 public static void MakeSureAllHandlerRegistered()
 {
     if (handlerReadFile == null)
     {
         handlerReadFile = DefaultReadFileProxy;
     }
     if (handlerFileExists == null)
     {
         handlerFileExists = DefaultFileExistsProxy;
     }
 }
コード例 #2
0
 public static void RegisterReadFileHandler(delegate_ReadFile hReadFile, delegate_FileExists hExists)
 {
     handlerReadFile   = hReadFile;
     handlerFileExists = hExists;
 }