Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
278 B

4 years ago
  1. typedef struct mr {
  2. #ifdef _DEBUG
  3. INT wMagic;
  4. INT cLocked;
  5. #endif /* DEBUG */
  6. HANDLE hFoo;
  7. PBYTE qFoo;
  8. INT cFooCur;
  9. INT cFooMax;
  10. } MR, *QMR;
  11. typedef HANDLE HMR;
  12. typedef struct mrd {
  13. MR mr;
  14. INT iFooFree;
  15. INT iFooFirst;
  16. INT iFooLast;
  17. } MRD, *QMRD;
  18. typedef HANDLE HMRD;