| 5 | #include "ServiceHandler.h" |
| 6 | |
| 7 | _Use_decl_annotations_ STDAPI DllGetClassObject([[maybe_unused]] REFCLSID rclsid, [[maybe_unused]] REFIID riid, LPVOID* ppv) |
| 8 | { |
| 9 | using namespace OpenGlass; |
| 10 | |
| 11 | if (ppv) |
| 12 | { |
| 13 | *ppv = nullptr; |
| 14 | } |
| 15 | |
| 16 | return CLASS_E_CLASSNOTAVAILABLE; |
| 17 | } |
| 18 | |
| 19 | _Use_decl_annotations_ STDAPI DllCanUnloadNow() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected