Fix up Cygwin patch
[git-cheetah/kirill.git] / dll.h
blobe5de007565cb89b1dd915709ec93cfd3cd456682
1 #ifndef DLL_H
2 #define DLL_H
4 const char *program_name = "Git-Cheetah";
5 const char *program_version = "Git-Cheetah.Application.1";
6 const char *program_id = "Git-Cheetah.Application";
8 HRESULT PASCAL DllGetClassObject(REFCLSID obj_guid, REFIID factory_guid,
9 void **factory_handle);
10 HRESULT PASCAL DllCanUnloadNow(void);
11 HRESULT PASCAL DllRegisterServer(void);
12 HRESULT PASCAL DllUnregisterServer(void);
13 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved);
15 #endif /* DLL_H */