Skip to content

Commit

Permalink
update chugin API version from 10.1. to 10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Jul 23, 2024
1 parent 8895ea7 commit fa6d880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/chuck_dl.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#define CK_DLL_VERSION_MAJOR (10)
// minor API version: revisions
// minor API version of chuck must >= API version of chugin
#define CK_DLL_VERSION_MINOR (1)
#define CK_DLL_VERSION_MINOR (2)
#define CK_DLL_VERSION_MAKE(maj,min) ((t_CKUINT)(((maj) << 16) | (min)))
#define CK_DLL_VERSION_GETMAJOR(v) (((v) >> 16) & 0xFFFF)
#define CK_DLL_VERSION_GETMINOR(v) ((v) & 0xFFFF)
Expand Down

0 comments on commit fa6d880

Please sign in to comment.