Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor classes to use TThis #102

Closed
11 tasks done
sancarn opened this issue May 21, 2024 · 0 comments
Closed
11 tasks done

Refactor classes to use TThis #102

sancarn opened this issue May 21, 2024 · 0 comments

Comments

@sancarn
Copy link
Owner

sancarn commented May 21, 2024

A number of class modules need to be remade into using TThis standard:

Description

Current

Example from stdWindow

Private Type TLayeredWindowInfo
  crKey As Long
  bAlpha As Byte
End Type

Private pHandle As LongPtr
Private pInitialized As Boolean
Private pLayeredWindowInfo As TLayeredWindowInfo
Private Lookups As Object

TThis standard

Private Type TLayeredWindowInfo
  crKey As Long
  bAlpha As Byte
End Type

'PreDeclared object level variables
Private Type TSingleton
  Lookups As Object
End Type

'Instance variables
Private Type TThis
  Singleton as TSingleton
  Handle As LongPtr
  Initialized As Boolean
  LayeredWindowInfo As TLayeredWindowInfo
End Type
Private This as TThis

Tracker

  • stdAcc
  • stdArray
  • stdCallback
  • stdCOM
  • stdEnumerator
  • stdHTTP
  • stdLambda
  • stdPerformance
  • stdProcess
  • stdRegex
  • stdWindow
sancarn added a commit that referenced this issue May 28, 2024
Related to #102
* stdAcc
* stdCallback
* stdCOM
* stdPerformance

Fix to stdEnumerator#AsArray2D
Major fixes to tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant