diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-27 17:58:51 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-27 17:58:51 +0000 |
commit | cd6d14b690ea36ec68d0653e664f91dcda0d4273 (patch) | |
tree | 6a8b556b23cd02324d804a257e7ee2313cd964bb /ppapi/c/dev/ppb_font_dev.h | |
parent | e789ff3b6f13d50c2599050c1b4797593c06cdfc (diff) | |
download | chromium_src-cd6d14b690ea36ec68d0653e664f91dcda0d4273.zip chromium_src-cd6d14b690ea36ec68d0653e664f91dcda0d4273.tar.gz chromium_src-cd6d14b690ea36ec68d0653e664f91dcda0d4273.tar.bz2 |
Add version-specific defines for each C interface.
This explicitly does not change any of the version numbers, and just makes the
name of the define string match the current version number.
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/6893022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83176 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/dev/ppb_font_dev.h')
-rw-r--r-- | ppapi/c/dev/ppb_font_dev.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/c/dev/ppb_font_dev.h b/ppapi/c/dev/ppb_font_dev.h index e15c11d..8e45bb9 100644 --- a/ppapi/c/dev/ppb_font_dev.h +++ b/ppapi/c/dev/ppb_font_dev.h @@ -12,7 +12,8 @@ #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_var.h" -#define PPB_FONT_DEV_INTERFACE "PPB_Font(Dev);0.5" +#define PPB_FONT_DEV_INTERFACE_0_5 "PPB_Font(Dev);0.5" +#define PPB_FONT_DEV_INTERFACE PPB_FONT_DEV_INTERFACE_0_5 struct PP_Point; struct PP_Rect; |