diff options
author | scuri <scuri> | 2010-06-18 18:19:28 +0000 |
---|---|---|
committer | scuri <scuri> | 2010-06-18 18:19:28 +0000 |
commit | 553cd80ed974c1dd151f902040bd942f043ac193 (patch) | |
tree | b38c404c0106e81e7498614afd73557675e8ec1c /src/drv | |
parent | b6c28915b03725a831417cfe720a1405832102d8 (diff) |
*** empty log message ***
Diffstat (limited to 'src/drv')
-rw-r--r-- | src/drv/cd0emf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/drv/cd0emf.c b/src/drv/cd0emf.c index 13beb4c..7e05134 100644 --- a/src/drv/cd0emf.c +++ b/src/drv/cd0emf.c @@ -6,11 +6,19 @@ #include <stdlib.h> #include "cd.h" +#include "cd_private.h" #include "cdemf.h" cdContext* cdContextEMF(void) { + if (cdUseContextPlus(CD_QUERY)) + { + cdContext* ctx = cdGetContextPlus(CD_CTX_EMF); + if (ctx != NULL) + return ctx; + } + return NULL; } |