5 * Some class IDs. Let's hope they are unique enough.
8 static const IID LIBID
= {
9 0xca586c7f, 0x7c84, 0x4b88,
10 {0x85, 0x37, 0x72, 0x67, 0x24, 0xdf, 0x69, 0x29}
13 static const CLSID CLSID_git_shell_ext
= {
14 0xca586c80, 0x7c84, 0x4b88,
15 {0x85, 0x37, 0x72, 0x67, 0x24, 0xdf, 0x69, 0x29}
18 static const IID IID_git_shell_ext
= {
19 0xca586c81, 0x7c84, 0x4b88,
20 {0x85, 0x37, 0x72, 0x67, 0x24, 0xdf, 0x69, 0x29}
23 static const CLSID CLSID_git_menu
= {
24 0xca586c82, 0x7c84, 0x4b88,
25 {0x85, 0x37, 0x72, 0x67, 0x24, 0xdf, 0x69, 0x29}
28 static const IID IID_git_menu
= {
29 0xca586c83, 0x7c84, 0x4b88,
30 {0x85, 0x37, 0x72, 0x67, 0x24, 0xdf, 0x69, 0x29}
33 extern struct git_shell_ext_virtual_table
35 STDMETHOD(query_interface
)(void *, REFIID
, PVOID
*);
36 STDMETHOD_(ULONG
, add_ref
)(void *);
37 STDMETHOD_(ULONG
, release
)(void *);
38 STDMETHOD(initialize
)(void *,
39 LPCITEMIDLIST
, LPDATAOBJECT
, HKEY
);
40 } git_shell_ext_virtual_table
;
42 #define DEFINE_STANDARD_METHODS(name) \
43 static ULONG STDMETHODCALLTYPE add_ref_##name(void *p) { \
44 struct name *this_ = p; \
45 return add_ref_git_data(this_->git_data); \
48 static ULONG STDMETHODCALLTYPE \
49 release_##name(void *p) { \
50 struct name *this_ = p; \
51 return release_git_data(this_->git_data); \
54 static STDMETHODIMP query_interface_##name(void *p, \
55 REFIID iid, LPVOID FAR *pointer) { \
56 struct name *this_ = p; \
57 return query_interface_git_data(this_->git_data, \
61 static STDMETHODIMP initialize_##name(void *p, \
62 LPCITEMIDLIST folder, LPDATAOBJECT data, HKEY id) { \
63 struct name *this_ = p; \
64 return initialize_git_data(this_->git_data, folder, data, id); \
67 extern DWORD object_count
;
68 extern DWORD lock_count
;
70 inline STDMETHODIMP
query_interface_git_data(struct git_data
*this_
,
71 REFIID iid
, LPVOID FAR
*pointer
);
72 inline ULONG STDMETHODCALLTYPE
add_ref_git_data(struct git_data
*this_
);
73 inline ULONG STDMETHODCALLTYPE
release_git_data(struct git_data
*this_
);
74 inline STDMETHODIMP
initialize_git_data(struct git_data
*this_
,
76 LPDATAOBJECT data
, HKEY id
);