ref: f26467638707925c0ddd857f43fe71bc6791c809
parent: 3877dca4816821d65bcaef7ce12b6fcde009a71f
author: aforanna <aforanna>
date: Sun Nov 21 11:27:20 EST 2004
defines.h
--- a/plugins/winamp/defines.h
+++ b/plugins/winamp/defines.h
@@ -20,16 +20,20 @@
*/
#define APP_NAME "MPEG4-AAC encoder"
-#define APP_VER "v1.5"
+#define APP_VER "v1.7"
#define REGISTRY_PROGRAM_NAME "SOFTWARE\\4N\\Winamp\\Out_AAC"
+#define USE_OUTPUT_FOLDER
+#define USE_IMPORT_TAG
+//#define USE_PATHEXT
+
// -----------------------------------------------------------------------------------------------
#define FREE_ARRAY(ptr) \
{ \
- if(ptr) \
+ if(ptr!=NULL) \
free(ptr); \
- ptr=0; \
+ ptr=NULL; \
}
// -----------------------------------------------------------------------------------------------