Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Windows/DLL.h')
-rw-r--r--[-rwxr-xr-x]CPP/Windows/DLL.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/CPP/Windows/DLL.h b/CPP/Windows/DLL.h
index 9f0f5cd7..f7e5b81b 100755..100644
--- a/CPP/Windows/DLL.h
+++ b/CPP/Windows/DLL.h
@@ -37,9 +37,9 @@ public:
return m;
}
- bool Free();
- bool LoadEx(CFSTR path, DWORD flags = LOAD_LIBRARY_AS_DATAFILE);
- bool Load(CFSTR path);
+ bool Free() throw();
+ bool LoadEx(CFSTR path, DWORD flags = LOAD_LIBRARY_AS_DATAFILE) throw();
+ bool Load(CFSTR path) throw();
FARPROC GetProc(LPCSTR procName) const { return My_GetProcAddress(_module, procName); }
};