Detect System Language Name: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.) |
mNo edit summary |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{ | {{PageAuthor|deguix}} | ||
== Description == | == Description == | ||
'''Requires:''' [[System]] | '''Requires:''' [[System plug-in|System]] plug-in. | ||
This function detects your system language name in system's language. | This function detects your system language name in system's language. | ||
Line 36: | Line 34: | ||
Function SysLang | Function SysLang | ||
Push $0 | Push $0 | ||
Line 46: | Line 43: | ||
System::Call "Kernel32::GetLocaleInfo(i,i,t,i)i(2048,0x2,.r0,${NSIS_MAX_STRLEN})i" | System::Call "Kernel32::GetLocaleInfo(i,i,t,i)i(2048,0x2,.r0,${NSIS_MAX_STRLEN})i" | ||
Exch $0</highlight-nsis> | Exch $0 | ||
FunctionEnd</highlight-nsis> | |||
[[Category:System Related Functions]] |
Latest revision as of 07:47, 6 November 2005
Author: deguix (talk, contrib) |
Description
Requires: System plug-in.
This function detects your system language name in system's language.
Function Call
Call SysLang Pop "$var1" ; Variable (for language name)
Function Code
;---------------------------------------------------------------------------- ; Title : Detect system language name ; Short Name : SysLang ; Last Changed : 22/Feb/2005 ; Code Type : Function ; Code Sub-Type : One-way Output ;---------------------------------------------------------------------------- ; Required : System plugin. ; Description : Detects your system language name in system's language. ;---------------------------------------------------------------------------- ; Function Call : Call SysLang ; ; Pop "$Variable1" ; Language name. ;---------------------------------------------------------------------------- ; Author : Diego Pedroso ; Author Reg. Name : deguix ;---------------------------------------------------------------------------- Function SysLang Push $0 System::Alloc "${NSIS_MAX_STRLEN}" Pop $0 ;uses LOCALE_SYSTEM_DEFAULT and LOCALE_SLANGUAGE defines System::Call "Kernel32::GetLocaleInfo(i,i,t,i)i(2048,0x2,.r0,${NSIS_MAX_STRLEN})i" Exch $0 FunctionEnd