diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-22 05:04:36 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-22 05:04:36 +0000 |
commit | 3eab86e88f98801a4983c7ed5d08936b81741f3e (patch) | |
tree | d5ffbf111cf859e574eedc4ba83685bb989248d9 /yapp/docs/m_yapp.h | |
parent | c12debcb441a2078c30372ba77cfcf6bdb219bfd (diff) |
API standardization cosmetic changes
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@510 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'yapp/docs/m_yapp.h')
-rw-r--r-- | yapp/docs/m_yapp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yapp/docs/m_yapp.h b/yapp/docs/m_yapp.h index 96d15e7..2fdd106 100644 --- a/yapp/docs/m_yapp.h +++ b/yapp/docs/m_yapp.h @@ -102,7 +102,7 @@ typedef struct { // wParam = 0
// lParam = (POPUPCLASS *)&pc
-#define MS_YAPP_REGISTERCLASS "YAPP/RegisterClass"
+#define MS_POPUP_REGISTERCLASS "PopUp/RegisterClass"
typedef struct {
int cbSize;
@@ -123,20 +123,20 @@ typedef struct { // wParam = 0
// lParam = (POPUPDATACLASS *)&pdc
-#define MS_YAPP_CLASSINSTANCE "YAPP/ClassInstance"
+#define MS_POPUP_ADDPOPUPCLASS "PopUp/AddPopupClass"
static int __inline ShowClassPopupA(const char *name, const char *title, const char *text) {
PopupClassInstance d = {sizeof(d), name};
d.pszTitle = title;
d.pszText = text;
- return CallService(MS_YAPP_CLASSINSTANCE, 0, (LPARAM)&d);
+ return CallService(MS_POPUP_ADDPOPUPCLASS, 0, (LPARAM)&d);
}
static int __inline ShowClassPopupW(const char *name, const wchar_t *title, const wchar_t *text) {
PopupClassInstance d = {sizeof(d), name};
d.pwszTitle = title;
d.pwszText = text;
- return CallService(MS_YAPP_CLASSINSTANCE, 0, (LPARAM)&d);
+ return CallService(MS_POPUP_ADDPOPUPCLASS, 0, (LPARAM)&d);
}
#ifdef _UNICODE
|