Skip to content

Commit 068d38a

Browse files
author
cyruz-git
committed
Small grammar changes
1 parent bc75ace commit 068d38a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Auth.ahk

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Auth_RunAsUser(sCmdLine)
6666
; SID_AND_ATTRIBUTES - http://msdn.microsoft.com/en-us/library/aa379595
6767
VarSetCapacity( SIDATTR, (A_PtrSize == 4) ? 8 : 16, 0 )
6868
NumPut( &pSid, &SIDATTR, 0, "Ptr" )
69-
; missing SE_GROUP_USE_FOR_DENY_ONLY
69+
; Missing SE_GROUP_USE_FOR_DENY_ONLY
7070
}
7171

7272
; Restrict the token (deny the Administrators SID on XP).

Icon.ahk

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Icon_Create(adrBuf, nIconWidth, szBuf:=0)
3939

4040
; ----------------------------------------------------------------------------------------------------------------------
4141
; Name .........: Icon_Load function
42-
; Description ..: It loads an icon from a PE file as a resource or from an icon file.
42+
; Description ..: Load an icon from a PE file as a resource or from an icon file.
4343
; Parameters ...: sBinFile - Can be:
4444
; ..............: * 0 to load a resource from the current process executable.
4545
; ..............: * The module name or the full path to its executable/dll to load a resource from it.
@@ -82,8 +82,8 @@ Icon_Load(sBinFile, sResName, nWidth)
8282
}
8383

8484
; ----------------------------------------------------------------------------------------------------------------------
85-
; Name .........: Icon_Load function
86-
; Description ..: It loads an icon from a PE file as a resource or from an icon file.
85+
; Name .........: Icon_Destroy function
86+
; Description ..: Destroy an icon handle.
8787
; Parameters ...: hIcon - Handle to the icon to be destroyed.
8888
; Info .........: DestroyIcon function - https://goo.gl/LaivE8
8989
; ----------------------------------------------------------------------------------------------------------------------

WinEvents.ahk

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
; ----------------------------------------------------------------------------------------------------------------------
1313
; Function .....: WinEvents_RegisterForEvents
14-
; Description ..: Registers the application to send Windows log events.
14+
; Description ..: Register the application to send Windows log events.
1515
; Parameters ...: sLogName - Can be "Application", "System" or a custom event log name.
1616
; Return .......: Handle to the registered source on success, NULL on failure.
1717
; ----------------------------------------------------------------------------------------------------------------------
@@ -21,7 +21,7 @@ WinEvents_RegisterForEvents(sLogName) {
2121

2222
; ----------------------------------------------------------------------------------------------------------------------
2323
; Function .....: WinEvents_DeregisterForEvents
24-
; Description ..: Deregisters the previously registered application.
24+
; Description ..: Deregister the previously registered application.
2525
; Parameters ...: hSource - Handle to a previously registered events source with RegisterForEvents.
2626
; Return .......: Nonzero if the function succeeds or zero if it fails.
2727
; ----------------------------------------------------------------------------------------------------------------------
@@ -31,7 +31,7 @@ WinEvents_DeregisterForEvents(hSource) {
3131

3232
; ----------------------------------------------------------------------------------------------------------------------
3333
; Function .....: WinEvents_SendWinLogEvent
34-
; Description ..: Writes an entry at the end of the specified Windows event log.
34+
; Description ..: Write an entry at the end of the specified Windows event log.
3535
; Parameters ...: hSource - Handle to a previously registered events source with RegisterForEvents.
3636
; ..............: evType - Can be: "EVENTLOG_SUCCESS"
3737
; ..............: "EVENTLOG_AUDIT_FAILURE"

0 commit comments

Comments
 (0)