1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 1993-2001 by Free Pascal team
- A little example of using OS/2 API calls.
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- program GetCountryInfo;
- uses
- OS2Def, DosCalls;
- var
- Country: TCountryCode; (* Country code info (0 = current country) *)
- CtryInfo: TCountryInfo; (* Buffer for country-specific information *)
- Size: longint; (* Real size of returned data *)
- W: word;
- begin
- WriteLn;
- Size := 0;
- FillChar (Country, SizeOf (Country), 0);
- FillChar (CtryInfo, SizeOf (CtryInfo), 0);
- W := DosQueryCtryInfo (SizeOf (CtryInfo), Country, CtryInfo, Size);
- if (W <> NO_ERROR) then
- begin
- WriteLn ('DosQueryCtryInfo error: return code = ', W);
- Halt (1);
- end;
- WriteLn ('Code of the country is ', CtryInfo.Country,
- ', current codepage is ', CtryInfo.CodePage, '.');
- end.
- {
- $Log$
- Revision 1.3 2002-09-07 15:06:35 peter
- * old logs removed and tabs fixed
- Revision 1.2 2002/02/25 21:33:04 carl
- * bugfix of demo compilation problem
- }
|