jdk/src/java.desktop/share/native/liblcms/cmsplugin.c
changeset 32427 c22b7e41adf3
parent 30491 ea1c291ee28f
child 40152 35cbab101a76
equal deleted inserted replaced
32426:f20c72807bfd 32427:c22b7e41adf3
   987 // Returns the user data associated to the given ContextID, or NULL if no user data was attached on context creation
   987 // Returns the user data associated to the given ContextID, or NULL if no user data was attached on context creation
   988 void* CMSEXPORT cmsGetContextUserData(cmsContext ContextID)
   988 void* CMSEXPORT cmsGetContextUserData(cmsContext ContextID)
   989 {
   989 {
   990     return _cmsContextGetClientChunk(ContextID, UserPtr);
   990     return _cmsContextGetClientChunk(ContextID, UserPtr);
   991 }
   991 }
   992 
       
   993