bladesys.h
上传用户:bjsgzm
上传日期:2007-01-08
资源大小:256k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

Visual C++

  1. /*
  2. (c) Copyright 1998, 1999 - Tord Jansson
  3. =======================================
  4. This file is part of the BladeEnc MP3 Encoder, based on
  5. ISO's reference code for MPEG Layer 3 compression.
  6. This file doesn't contain any of the ISO reference code and
  7. is copyright Tord Jansson (tord.jansson@swipnet.se).
  8. BladeEnc is free software; you can redistribute this file
  9. and/or modify it under the terms of the GNU Lesser General Public
  10. License as published by the Free Software Foundation; either
  11. version 2.1 of the License, or (at your option) any later version.
  12. */
  13. #ifndef BLADESYS_DOT_H
  14. #define BLADESYS_DOT_H
  15. #define MAX_NAMELEN 256
  16. extern int setPriority( char * pPrioString );
  17. extern void prepStdin( void );
  18. extern void prepStdout( void );
  19. extern int be_kbhit();
  20. extern int be_getch();
  21. #ifdef WILDCARDS
  22. int expandWildcards( argLink ** ppArgLink );
  23. #endif
  24. int findConfigFile( char * pExepath, char * wpPath );
  25. #endif