INI.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //*---------------------------------------------------------------------------------
  2. //|  ODBC System Administrator
  3. //|
  4. //|  This code is furnished on an as-is basis as part of the ODBC SDK and is
  5. //|  intended for example purposes only.
  6. //|
  7. //|   Title:   INI.H
  8. //|      This file contains the prototypes and defines for executing SQL
  9. //|         statements and displaying their results.
  10. //*---------------------------------------------------------------------------------
  11. #ifndef ini_DEFS
  12. #define ini_DEFS
  13. #include <windows.h>
  14. #include "standard.h"
  15. #include "errcheck.h"
  16. //*---------------------------------------------------------------------------------
  17. //|   Global variables
  18. //*---------------------------------------------------------------------------------
  19. extern dCSEG(char) szLABINI[];
  20. extern dCSEG(char) szSCREEN[];
  21. extern dCSEG(char) szMAX[];
  22. extern dCSEG(char) szCONNECTOPTIONS[];
  23. extern dCSEG(char) szMAXRESULTS[];
  24. extern dCSEG(char) szFONTSIZE[];
  25. extern dCSEG(char) szMSSansSerif[];
  26. //*---------------------------------------------------------------------------------
  27. //|   Function prototypes
  28. //*---------------------------------------------------------------------------------
  29. VOID INTFUN ResolveIniFile();
  30. LOGFONT FAR * GetDefaultFont(LOGFONT FAR * lf);
  31. COLORREF GetDefaultRGB(void);
  32. void GetPipeNames(LPSTR szPipes, int size);
  33. void PromptForFontName(HWND hwndOwner);
  34. #endif